From c84e70b606415bc249ff336f9b03358d47953cf5 Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Wed, 14 May 2025 17:58:48 -0700 Subject: [PATCH] Fixes sterilizine in surgery tray (#91111) ## About The Pull Request Fixes the list of allowed items in the surgery tray. The tray starts with sterilizine, but you can't put it back on the tray because it's not whitelisted. ## Why It's Good For The Game Fixes bug ## Changelog :cl: LT3 fix: You can put sterilizine back in the surgery tray after removing it /:cl: --- code/datums/storage/subtypes/others/misc.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/storage/subtypes/others/misc.dm b/code/datums/storage/subtypes/others/misc.dm index 786f024f77a..b038b625a22 100644 --- a/code/datums/storage/subtypes/others/misc.dm +++ b/code/datums/storage/subtypes/others/misc.dm @@ -29,6 +29,7 @@ /obj/item/clothing/mask/surgical, /obj/item/hemostat, /obj/item/razor, + /obj/item/reagent_containers/medigel/sterilizine, /obj/item/retractor, /obj/item/scalpel, /obj/item/stack/medical/bone_gel,