From fc25f23752e626f7e9b9e422caddffff69afe1a6 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 24 Feb 2016 17:41:02 -0500 Subject: [PATCH] Tweaks Stamina Regeneration --- 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 a182fa62f84..0771f91ceab 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -285,7 +285,7 @@ Weaken(5) setStaminaLoss(health - 2) return - setStaminaLoss(max((staminaloss - 2), 0)) + setStaminaLoss(max((staminaloss - 3), 0)) //this updates all special effects: stunned, sleeping, weakened, druggy, stuttering, etc.. /mob/living/carbon/handle_status_effects()