comments addressed

This commit is contained in:
Aurorablade
2018-01-23 14:59:31 -05:00
parent e3c69c51a7
commit 8f6b02ba32
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -2,8 +2,7 @@
/mob/living/carbon/proc/dream()
var/list/dreams = dream_strings.Copy()
dreams = custom_dreams(dreams, src)
var/list/dreams = custom_dreams(dream_strings, src)
for(var/obj/item/weapon/bedsheet/sheet in loc)
dreams += sheet.dream_messages
+1 -2
View File
@@ -366,8 +366,7 @@
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.
if(prob(3))
if(comfort>1)//You don't heal if you're just sleeping on the floor without a blanket.
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)
if(prob(10) && health && hal_screwyhud != SCREWYHUD_CRIT)