From 72bc98698d6ffb017372fec7c6f3f4574b298593 Mon Sep 17 00:00:00 2001 From: Fikou Date: Tue, 14 Jan 2020 00:10:05 +0100 Subject: [PATCH] you can only slice neck grabs now --- code/datums/components/butchering.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/butchering.dm b/code/datums/components/butchering.dm index 7209cb9d2b0..10e5b1b5c05 100644 --- a/code/datums/components/butchering.dm +++ b/code/datums/components/butchering.dm @@ -32,7 +32,7 @@ if(ishuman(M) && source.force && source.get_sharpness()) var/mob/living/carbon/human/H = M - if((H.health <= H.crit_threshold || (user.pulling == H && user.grab_state >= GRAB_NECK) || H.IsSleeping()) && user.zone_selected == BODY_ZONE_HEAD) // Only sleeping, neck grabbed, or crit, can be sliced. + if((user.pulling == H && user.grab_state >= GRAB_NECK) && user.zone_selected == BODY_ZONE_HEAD) // Only neck grabbed can be sliced. if(H.has_status_effect(/datum/status_effect/neck_slice)) user.show_message("[H]'s neck has already been already cut, you can't make the bleeding any worse!", MSG_VISUAL, \ "Their neck has already been already cut, you can't make the bleeding any worse!")