From e47d2da32f51dbb9e4b2ca13300bbb81e9edad0f Mon Sep 17 00:00:00 2001 From: SapphicOverload <93578146+SapphicOverload@users.noreply.github.com> Date: Sun, 2 Jul 2023 19:48:22 -0400 Subject: [PATCH] uh oh (#19490) --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index b6b5f32d2a3c..d4ec495f1296 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -453,7 +453,7 @@ else to_chat(user, "The wires seem fine, there's no need to fix them.") - else if(W.tool_behaviour == TOOL_CROWBAR) // crowbar means open or close the cover + else if(W.tool_behaviour == TOOL_CROWBAR && (user.a_intent != INTENT_HARM || user == src)) // crowbar means open or close the cover if(opened) to_chat(user, span_notice("You close the cover.")) opened = 0