From e88e8a4ed51a83d3a26bce516cd092f955dda1ca Mon Sep 17 00:00:00 2001 From: phil235 Date: Tue, 31 Mar 2015 00:27:32 +0200 Subject: [PATCH] Fixes drowsyness never going down. --- 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 7cfa8b72f96..daebf276b12 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -333,7 +333,7 @@ dizziness = max(dizziness - restingpwr, 0) if(drowsyness) - dizziness = max(drowsyness - restingpwr, 0) + drowsyness = max(drowsyness - restingpwr, 0) eye_blurry = max(2, eye_blurry) if(prob(5)) sleeping += 1