diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 8ec1d6688d7b..2f7b6e19efbc 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -520,9 +520,9 @@ to_chat(src, "You feel your heart beating again!") //WS - Bootleg IPC revival if(stat == DEAD && !(flags & SHOCK_ILLUSION) && ((isipc(src) && can_be_revived()) || can_defib())) - if (health > HEALTH_THRESHOLD_CRIT) + if(health > HEALTH_THRESHOLD_CRIT) adjustOxyLoss(health - HEALTH_THRESHOLD_CRIT, 0) //FUCK you. 100 oxygen damage. - else if (health < HEALTH_THRESHOLD_FULLCRIT) //oh. they might actually die. that would suck. + else if(health < HEALTH_THRESHOLD_FULLCRIT) //oh. they might actually die. that would suck. adjustOxyLoss(-20) //let's try to make that not happen adjustToxLoss(-10) set_heartattack(FALSE)