From 0800f05c31aefe7858bfb93d39c7b492516ccfb2 Mon Sep 17 00:00:00 2001 From: Rykka Date: Mon, 27 Jul 2020 05:28:17 -0400 Subject: [PATCH] Fix for Camera interaction for Borgs/Drones. To note - the original change was intentional change on Paradise/Polaris's part. "You might not have been able to actually view the cameras, but you should have been able to open the interface." --- code/game/machinery/computer/camera.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm index dc109ba5da0..97d68e190a1 100644 --- a/code/game/machinery/computer/camera.dm +++ b/code/game/machinery/computer/camera.dm @@ -37,8 +37,10 @@ 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 + attack_hand(user) /obj/machinery/computer/security/proc/set_network(list/new_network) network = new_network