From caf515f204d20893b05b3c6c1d7acb45b9f66317 Mon Sep 17 00:00:00 2001 From: Dax Dupont Date: Sat, 26 May 2018 20:44:02 +0200 Subject: [PATCH 1/2] [s] Blacklists TB grenade from experimentor. (#38095) --- code/modules/research/experimentor.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index 42831cc013..a0eb2ada49 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -53,6 +53,8 @@ if(ispath(I, /obj/item/stock_parts) || ispath(I, /obj/item/grenade/chem_grenade) || ispath(I, /obj/item/kitchen)) var/obj/item/tempCheck = I if(initial(tempCheck.icon_state) != null) //check it's an actual usable item, in a hacky way + if(istype(I, /obj/item/grenade/chem_grenade/tuberculosis)) + continue valid_items["[I]"] += 15 if(ispath(I, /obj/item/reagent_containers/food))