From d09b489d7e8ec335d015dc8745533c67f6a9c1cc Mon Sep 17 00:00:00 2001 From: Ryal Date: Sun, 27 Sep 2020 21:02:55 -0700 Subject: [PATCH] Fixes crowbars not working on AIs (#14477) --- code/game/machinery/computer/ai_core.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/ai_core.dm b/code/game/machinery/computer/ai_core.dm index 037abb55fa1..11d90f4094a 100644 --- a/code/game/machinery/computer/ai_core.dm +++ b/code/game/machinery/computer/ai_core.dm @@ -111,7 +111,7 @@ return ..() /obj/structure/AIcore/crowbar_act(mob/living/user, obj/item/I) - if(state !=CIRCUIT_CORE || state != GLASS_CORE || !(state == CABLED_CORE && brain)) + if(state !=CIRCUIT_CORE && state != GLASS_CORE && !(state == CABLED_CORE && brain)) return . = TRUE if(!I.use_tool(src, user, 0, volume = I.tool_volume))