From 2d38b200a094a05e2ff64aeff0dd22b36bf7a061 Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Sat, 12 Apr 2025 20:06:37 -0700 Subject: [PATCH] Allow hypospray in medical pouch (#3493) ## About The Pull Request Adds hypospray and cable to the allowed list of items in the medical pouch ## Why It's Good For The Game Commonly held items, other reagent containers are accepted but hypo is missing. ## Changelog :cl: LT3 qol: The medical pouch can now hold hyposprays and cable coil /:cl: --- modular_skyrat/modules/modular_items/code/bags.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modular_skyrat/modules/modular_items/code/bags.dm b/modular_skyrat/modules/modular_items/code/bags.dm index 9932bdf22fe..2d74326dd8d 100644 --- a/modular_skyrat/modules/modular_items/code/bags.dm +++ b/modular_skyrat/modules/modular_items/code/bags.dm @@ -74,11 +74,13 @@ /// The list of things that medical pouches can hold. Stolen from what medkits can hold, but modified for things you would probably want at pocket-access. var/static/list/med_pouch_holdables = list( /obj/item/healthanalyzer, + /obj/item/hypospray/mkii, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/cup/beaker, /obj/item/reagent_containers/cup/bottle, /obj/item/reagent_containers/cup/tube, + /obj/item/reagent_containers/cup/vial, /obj/item/reagent_containers/pill, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/medigel, @@ -86,6 +88,7 @@ /obj/item/reagent_containers/hypospray, /obj/item/storage/pill_bottle, /obj/item/storage/box/bandages, + /obj/item/stack/cable_coil, /obj/item/stack/medical, /obj/item/flashlight/pen, /obj/item/bonesetter,