From 581b8ec1fa637e3669d8431d3c58cb072ac6aba4 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Mon, 16 Jul 2018 03:15:07 -0400 Subject: [PATCH] tweak tweak --- code/game/machinery/camera/camera.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index f4f435643f8..345f55d47a5 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -125,7 +125,7 @@ to_chat(user, "You screw the camera's panel [panel_open ? "open" : "closed"].") playsound(loc, I.usesound, 50, 1) - else if((iswirecutter(I) || ismultitool(I) && panel_open)) + else if((iswirecutter(I) || ismultitool(I)) && panel_open) wires.Interact(user) else if(iswelder(I) && panel_open && wires.CanDeconstruct()) @@ -292,10 +292,10 @@ to_chat(O, "The screen bursts into static.") /obj/machinery/camera/proc/triggerCameraAlarm() - motion_alarm.triggerAlarm(loc, src) + camera_alarm.triggerAlarm(loc, src) /obj/machinery/camera/proc/cancelCameraAlarm() - motion_alarm.clearAlarm(loc, src) + camera_alarm.clearAlarm(loc, src) /obj/machinery/camera/proc/can_use() if(!status)