From bd97e025249707e42d53d03e755420d49573807a Mon Sep 17 00:00:00 2001 From: Markolie Date: Thu, 4 Dec 2014 22:03:20 +0100 Subject: [PATCH] Make sure securitrons report to the AI --- code/game/machinery/bots/secbot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/bots/secbot.dm b/code/game/machinery/bots/secbot.dm index cbd78f31440..bd61055fcf0 100644 --- a/code/game/machinery/bots/secbot.dm +++ b/code/game/machinery/bots/secbot.dm @@ -482,7 +482,7 @@ Auto Patrol: []"}, for(var/mob/living/carbon/human/human in world) if((human.z == src.z) && istype(human.glasses, /obj/item/clothing/glasses/hud/security) || istype(human.glasses, /obj/item/clothing/glasses/sunglasses/sechud) && !human.blinded) human << "\icon[human.glasses] [src.name] is [arrest_type ? "detaining" : "arresting"] level [threatlevel] threat [target] in [location]" - for(var/mob/living/silicon/robot/robot in world) + for(var/mob/living/silicon/robot in world) if((robot.z == src.z) && !robot.blinded) for(var/obj/I in robot.contents) if(istype(I, /obj/item/borg/sight/hud/sec))