From c68ab1293ef583d5d1738afc9d4fc63f7398848c Mon Sep 17 00:00:00 2001 From: Merrgear <68803078+Merrgear@users.noreply.github.com> Date: Sat, 3 Aug 2024 18:16:57 -0400 Subject: [PATCH] Update code/modules/mob/living/carbon/human/human_attackhand.dm Co-authored-by: Doubleumc --- code/modules/mob/living/carbon/human/human_attackhand.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 1c115d5537..017c911a3c 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -22,7 +22,7 @@ return 1 // If unconcious with oxygen damage, do CPR. If dead, we do CPR - if(!((stat == UNCONSCIOUS || (HAS_TRAIT(src, TRAIT_FLOORED) && HAS_TRAIT(src, TRAIT_INCAPACITATED))) && getOxyLoss() > 0) && !(stat == DEAD)) + if(!((stat == UNCONSCIOUS || (body_position == LYING_DOWN && HAS_TRAIT(src, TRAIT_INCAPACITATED))) && getOxyLoss() > 0) && !(stat == DEAD)) help_shake_act(attacking_mob) return 1