From 82c46e62328e803dc0e7156a7c898ab9f98a4af6 Mon Sep 17 00:00:00 2001 From: TheSardele Date: Sat, 10 Aug 2019 23:46:47 +0200 Subject: [PATCH] Fixes sleeping drunk making you more drunk Sleeping drunk used to make you even more drunk, despite what the comment stating the contrary. Now, you become less drunk while sleeping depending on how comfortable you are. --- 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 63f9f10dc71..c5cbbc0b1d3 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -332,7 +332,7 @@ break //Only count the first bedsheet if(drunk) comfort += 1 //Aren't naps SO much better when drunk? - AdjustDrunk(1-0.0015*comfort) //reduce drunkenness ~6% per two seconds, when on floor. + AdjustDrunk(-0.2*comfort) //reduce drunkenness while sleeping. if(comfort > 1 && prob(3))//You don't heal if you're just sleeping on the floor without a blanket. adjustBruteLoss(-1*comfort) adjustFireLoss(-1*comfort)