From fc9aff7128baf3c302f14a1a3b3cfd0b3fa53a62 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 13 Nov 2015 23:15:36 -0500 Subject: [PATCH] Fixes Stamina --- code/modules/mob/living/carbon/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index 2761f9b1b07..3586a58ec23 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -277,7 +277,7 @@ /mob/living/carbon/proc/CheckStamina() if(staminaloss) var/total_health = (health - staminaloss) - if(total_health <= config.health_threshold_crit && !stat) + if(total_health <= config.health_threshold_softcrit && !stat) src << "You're too exhausted to keep going..." Weaken(5) setStaminaLoss(health - 2)