From 343e2ca1f55849a6a7f752133ecf090f6540a66d Mon Sep 17 00:00:00 2001 From: Razharas Date: Sat, 22 Nov 2014 20:09:19 +0300 Subject: [PATCH] Simple fix for brand intellegense runtime Should fix #5672 --- code/modules/events/brand_intelligence.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/brand_intelligence.dm b/code/modules/events/brand_intelligence.dm index cfb88cab99c..225096cf99f 100644 --- a/code/modules/events/brand_intelligence.dm +++ b/code/modules/events/brand_intelligence.dm @@ -40,7 +40,7 @@ /datum/round_event/brand_intelligence/tick() - if(!originMachine || originMachine.shut_up || originMachine.wires.IsAllCut()) //if the original vending machine is missing or has it's voice switch flipped + if(!originMachine || originMachine.gc_destroyed || originMachine.shut_up || originMachine.wires.IsAllCut()) //if the original vending machine is missing or has it's voice switch flipped for(var/obj/machinery/vending/saved in infectedMachines) saved.shoot_inventory = 0 if(originMachine)