From 40d03dd6690b0c21cb14d2caf800563c7c37d5e5 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Tue, 28 May 2024 22:08:03 -0400 Subject: [PATCH] Fixes beepsky (#25675) * yowza * whabam --- code/modules/mob/living/simple_animal/bot/secbot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/bot/secbot.dm b/code/modules/mob/living/simple_animal/bot/secbot.dm index 79f7c56c449..cd5435da4d0 100644 --- a/code/modules/mob/living/simple_animal/bot/secbot.dm +++ b/code/modules/mob/living/simple_animal/bot/secbot.dm @@ -195,7 +195,7 @@ ..() if(istype(W, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) // Any intent but harm will heal, so we shouldn't get angry. return - if(!isscrewdriver(W) && !locked && (W.force) && (!target) && (W.damtype != STAMINA))//If the target is locked, they are recieving damage from the screwdriver + if(W.force && !target && W.damtype != STAMINA) retaliate(user) /mob/living/simple_animal/bot/secbot/emag_act(mob/user)