From 221a424fa466a85f81af8c9bfd7ed6566258efdf Mon Sep 17 00:00:00 2001 From: skeeyui <19658265+skeyuui@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:55:40 -0300 Subject: [PATCH 1/2] reduce tiredness increase --- code/modules/mob/living/carbon/life.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index e6aba84ea..ee9fabc07 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -65,6 +65,7 @@ to_chat(src, span_warning("I'll fall asleep soon...")) fallingas++ if(fallingas > 15) + tiredness = tiredness - 45 // Sleeping on a bed gives you about 5.5 hours Sleeping(300) else rogstam_add(buckled.sleepy * 10) @@ -75,12 +76,13 @@ to_chat(src, span_warning("I'll fall asleep soon, although a bed would be more comfortable...")) fallingas++ if(fallingas > 25) + tiredness = tiredness - 25 // Sleeping without gives you about 2.5 Sleeping(300) else rogstam_add(10) else if(fallingas) fallingas = 0 - tiredness = min(tiredness + 1, 100) + tiredness = min(tiredness + 0.33, 100) handle_brain_damage() From 35450e3b7a6812487fb2aa400637e6144c3a71c3 Mon Sep 17 00:00:00 2001 From: skeeyui <19658265+skeyuui@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:55:51 -0300 Subject: [PATCH 2/2] characters start a bit tired --- code/modules/mob/living/carbon/carbon_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon_defines.dm b/code/modules/mob/living/carbon/carbon_defines.dm index 2e72c5de4..9e3ba88bb 100644 --- a/code/modules/mob/living/carbon/carbon_defines.dm +++ b/code/modules/mob/living/carbon/carbon_defines.dm @@ -86,4 +86,4 @@ var/stam_paralyzed = FALSE var/domhand = 0 - var/tiredness = 0 + var/tiredness = 45 // we start a little tired