From fa80eb1586f2daf188eb1bd8527e3269b1114943 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 25 Feb 2019 19:05:42 -0500 Subject: [PATCH] Experimental fix to a currently unreproducable bug where you can become immune to stamloss --- code/modules/mob/living/carbon/life.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index fa435d11c0..a2f6a469d9 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -455,6 +455,7 @@ GLOBAL_LIST_INIT(ballmer_windows_me_msg, list("Yo man, what if, we like, uh, put adjustStaminaLoss(resting ? (recoveringstam ? -7.5 : -3) : -1.5)//CIT CHANGE - decreases adjuststaminaloss to stop stamina damage from being such a joke if(!recoveringstam && incomingstammult != 1) + incomingstammult = max(0.01, incomingstammult) incomingstammult = min(1, incomingstammult*2) //CIT CHANGES START HERE. STAMINA BUFFER STUFF