From 2710dfad5bd7a61651a56a9f77a0f41d571ed4a4 Mon Sep 17 00:00:00 2001 From: morrowwolf Date: Tue, 29 Aug 2023 02:43:39 -0400 Subject: [PATCH] Added 3 to hypospray transfer amount option (#4272) # About the pull request Added 3 to hypospray transfer amount option # Explain why it's good for the game Let my epi hypospray boys free # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Morrow add: Added 3 to hypospray transfer amount option /:cl: --- code/game/objects/items/reagent_containers/hypospray.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/reagent_containers/hypospray.dm b/code/game/objects/items/reagent_containers/hypospray.dm index 5014c85547aa..fcea8997f0b5 100644 --- a/code/game/objects/items/reagent_containers/hypospray.dm +++ b/code/game/objects/items/reagent_containers/hypospray.dm @@ -10,7 +10,7 @@ icon_state = "hypo" amount_per_transfer_from_this = 5 volume = 30 - possible_transfer_amounts = list(5,10,15,30) + possible_transfer_amounts = list(3, 5, 10, 15, 30) flags_atom = FPRINT|OPENCONTAINER flags_equip_slot = SLOT_WAIST flags_item = NOBLUDGEON