From c3773d9d2c6e807f3e79a473f81724feea963b97 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 24 Jun 2020 02:56:09 -0400 Subject: [PATCH] Fixes attacking cameras with a peice of paper not giving notifications if there's a dead AI somewhere --- code/game/machinery/camera/camera.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 6e7c25c543f..2ae4de8d754 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -322,7 +322,7 @@ if(isAI(O)) var/mob/living/silicon/ai/AI = O if(AI.control_disabled || (AI.stat == DEAD)) - return + continue if(U.name == "Unknown") to_chat(AI, "[U] holds \a [itemname] up to one of your cameras ...") else