Skip to content

Commit

Permalink
Unconscious = shake, if not heart attack-ing (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMelbert authored Dec 1, 2023
1 parent e60f82d commit 0135385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ GLOBAL_LIST_EMPTY(features_by_species)
to_chat(src, span_warning("[target] is dead!"))
return FALSE

if(target.body_position == LYING_DOWN && (target.undergoing_cardiac_arrest() || target.stat != CONSCIOUS))
if(target.body_position == LYING_DOWN && (target.undergoing_cardiac_arrest() || target.stat == SOFT_CRIT || target.stat == HARD_CRIT))
user.do_cpr(target)
return TRUE

Expand Down

0 comments on commit 0135385

Please sign in to comment.