From ada8b7f23f576b51f3616ceaebafd2442e380bf4 Mon Sep 17 00:00:00 2001 From: Sawu Date: Wed, 7 Jan 2015 04:25:16 +1100 Subject: [PATCH] Fixes a rogue : Makes him . instead. --- code/modules/research/experimentor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index 42e1c450dcd..1711afc10e5 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -39,7 +39,7 @@ item_reactions["[I]"] = pick(SCANTYPE_POKE,SCANTYPE_IRRADIATE,SCANTYPE_GAS,SCANTYPE_HEAT,SCANTYPE_COLD,SCANTYPE_OBLITERATE) if(ispath(I,/obj/item/weapon/reagent_containers/food) || ispath(I,/obj/item/weapon/stock_parts) || ispath(I,/obj/item/weapon/grenade/chem_grenade) || ispath(I,/obj/item/weapon/kitchen)) var/obj/item/tempCheck = new I() - if(tempCheck:icon_state != null) //check it's an actual usable item, in a hacky way + if(tempCheck.icon_state != null) //check it's an actual usable item, in a hacky way valid_items += I qdel(tempCheck)