From b89203acc7a7adabfd89e6a04a5bd3bd2fbf4df1 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 7 Sep 2018 10:26:29 -0400 Subject: [PATCH] reduces stam buffer regen time to 1 second (#7504) --- modular_citadel/code/modules/mob/living/carbon/damage_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/mob/living/carbon/damage_procs.dm b/modular_citadel/code/modules/mob/living/carbon/damage_procs.dm index 8f1d0baff1..217eb9d749 100644 --- a/modular_citadel/code/modules/mob/living/carbon/damage_procs.dm +++ b/modular_citadel/code/modules/mob/living/carbon/damage_procs.dm @@ -5,7 +5,7 @@ if(directstamloss > 0) adjustStaminaLoss(directstamloss) bufferedstam = CLAMP(bufferedstam + amount, 0, stambuffer) - stambufferregentime = world.time + 2 SECONDS + stambufferregentime = world.time + 10 if(updating_stamina) update_health_hud()