From 698782d1ad345d75c7ff760f21f8d3487f8c25a4 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Sat, 15 Oct 2016 03:22:13 -0700 Subject: [PATCH] Puts the oxy KO threshold back to 50 --- code/modules/mob/living/carbon/update_status.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/update_status.dm b/code/modules/mob/living/carbon/update_status.dm index 6b333c19d07..3b0d3a045fc 100644 --- a/code/modules/mob/living/carbon/update_status.dm +++ b/code/modules/mob/living/carbon/update_status.dm @@ -7,7 +7,7 @@ death() return // if(paralysis || sleeping || getOxyLoss() > low_oxy_ko || (status_flags & FAKEDEATH) || health <= crit_health) - if(paralysis || sleeping || getOxyLoss() > 40 || (status_flags & FAKEDEATH) || health <= config.health_threshold_crit) + if(paralysis || sleeping || getOxyLoss() > 50 || (status_flags & FAKEDEATH) || health <= config.health_threshold_crit) if(stat == CONSCIOUS) KnockOut() else