From 3ccf300052cb9b1f2cddf7e9cd5a5e2b0d8a91fc Mon Sep 17 00:00:00 2001 From: Fermi Date: Tue, 25 Jun 2019 23:11:43 +0100 Subject: [PATCH] Fixed empty hypovial --- modular_citadel/code/game/objects/items/storage/firstaid.dm | 2 +- .../code/modules/reagents/reagent container/hypospraymkii.dm | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/game/objects/items/storage/firstaid.dm b/modular_citadel/code/game/objects/items/storage/firstaid.dm index 0fab7e04d9..125330a9b9 100755 --- a/modular_citadel/code/game/objects/items/storage/firstaid.dm +++ b/modular_citadel/code/game/objects/items/storage/firstaid.dm @@ -111,7 +111,7 @@ /obj/item/storage/hypospraykit/enlarge/PopulateContents() if(empty) return - new /obj/item/hypospray/mkii(src) + new /obj/item/hypospray/mkii/enlarge(src) new /obj/item/reagent_containers/glass/bottle/vial/small/preloaded/breastreduction(src) new /obj/item/reagent_containers/glass/bottle/vial/small/preloaded/breastreduction(src) new /obj/item/reagent_containers/glass/bottle/vial/small/preloaded/breastreduction(src) diff --git a/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm b/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm index bee56cde15..6cd9e1badc 100755 --- a/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm +++ b/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm @@ -50,6 +50,9 @@ /obj/item/hypospray/mkii/tricord start_vial = /obj/item/reagent_containers/glass/bottle/vial/small/preloaded/tricord +/obj/item/hypospray/mkii/enlarge + spawnwithvial = FALSE + /obj/item/hypospray/mkii/CMO name = "hypospray mk.II deluxe" allowed_containers = list(/obj/item/reagent_containers/glass/bottle/vial/tiny, /obj/item/reagent_containers/glass/bottle/vial/small, /obj/item/reagent_containers/glass/bottle/vial/large)