Skip to content

Commit

Permalink
what was I DOING??
Browse files Browse the repository at this point in the history
Signed-off-by: Theos <[email protected]>
  • Loading branch information
SomeguyManperson authored Aug 14, 2024
1 parent a7afaed commit 1392675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/human_defense.dm
Original file line number Diff line number Diff line change
Expand Up @@ -520,9 +520,9 @@
to_chat(src, "<span class='notice'>You feel your heart beating again!</span>")
//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)
Expand Down

0 comments on commit 1392675

Please sign in to comment.