From 8b5e72bc517b8ff16328c0aeada0fd9c867749e3 Mon Sep 17 00:00:00 2001 From: warior4356 Date: Sat, 17 Oct 2020 00:23:12 -0700 Subject: [PATCH] Fixes borgs and drones being unable to use camera console --- code/game/machinery/computer/camera.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm index ce6590c56a9..6d49f4740f0 100644 --- a/code/game/machinery/computer/camera.dm +++ b/code/game/machinery/computer/camera.dm @@ -163,8 +163,11 @@ tgui_interact(user) /obj/machinery/computer/security/attack_ai(mob/user) - to_chat(user, "You realise its kind of stupid to access a camera console when you have the entire camera network at your metaphorical fingertips") - return + if(isAI(user)) + to_chat(user, "You realise its kind of stupid to access a camera console when you have the entire camera network at your metaphorical fingertips") + return + + tgui_interact(user) /obj/machinery/computer/security/proc/show_camera_static()