Skip to content

Commit

Permalink
Update code/modules/mob/living/carbon/human/human_attackhand.dm
Browse files Browse the repository at this point in the history
Co-authored-by: Doubleumc <[email protected]>
  • Loading branch information
Merrgear and Doubleumc committed Aug 3, 2024
1 parent 2e91858 commit c68ab12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/human_attackhand.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c68ab12

Please sign in to comment.