From 76d6746c44d66d85a9272981fb7b78decdbdc072 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Mon, 29 Jul 2024 18:20:17 +0300 Subject: [PATCH] [NO GBP] You can no longer tear peoples arms off with non-killer clamps (#85333) ## About The Pull Request I fucked up when fixing up the code. Oops ## Changelog :cl: fix: You can no longer tear peoples arms off with non-killer clamps /:cl: --- code/modules/vehicles/mecha/equipment/tools/work_tools.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/mecha/equipment/tools/work_tools.dm b/code/modules/vehicles/mecha/equipment/tools/work_tools.dm index 35645bf56ba..c8e77f2e888 100644 --- a/code/modules/vehicles/mecha/equipment/tools/work_tools.dm +++ b/code/modules/vehicles/mecha/equipment/tools/work_tools.dm @@ -98,7 +98,7 @@ span_notice("[chassis] pushes you aside.")) return ..() - if(iscarbon(victim))//meme clamp here + if(iscarbon(victim) && killer_clamp)//meme clamp here var/mob/living/carbon/carbon_victim = target var/torn_off = FALSE var/obj/item/bodypart/affected = carbon_victim.get_bodypart(BODY_ZONE_L_ARM)