From 1392675fa2c0b7a20ae750277b4fddb5e77924b1 Mon Sep 17 00:00:00 2001 From: Theos Date: Wed, 14 Aug 2024 17:53:00 -0400 Subject: [PATCH] what was I DOING?? Signed-off-by: Theos --- code/modules/mob/living/carbon/human/human_defense.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)