From aedadb30a5cf6def4ce499aabd8c530936cf27aa Mon Sep 17 00:00:00 2001 From: Amatsu Darkfyre Date: Sun, 10 Mar 2019 23:54:45 -0400 Subject: [PATCH] Fixes a difference between /tg/ and Citadel that made extracts uninjectable. --- code/modules/research/xenobiology/crossbreeding/chilling.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/research/xenobiology/crossbreeding/chilling.dm b/code/modules/research/xenobiology/crossbreeding/chilling.dm index f09cc7b9e0..25dbaa461f 100644 --- a/code/modules/research/xenobiology/crossbreeding/chilling.dm +++ b/code/modules/research/xenobiology/crossbreeding/chilling.dm @@ -7,11 +7,12 @@ Chilling extracts: name = "chilling extract" desc = "It's cold to the touch, as if frozen solid." effect = "chilling" + container_type = INJECTABLE | DRAWABLE icon_state = "chilling" /obj/item/slimecross/chilling/Initialize() . = ..() - create_reagents(10, INJECTABLE | DRAWABLE) + create_reagents(10) /obj/item/slimecross/chilling/attack_self(mob/user) if(!reagents.has_reagent("plasma",10))