From 362e6a7f8a7f3d780317be45baf77d606156848b Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Wed, 12 May 2021 19:53:21 -0400 Subject: [PATCH 1/2] Stop SSD Snorers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stops SSD snoring. ~I think. Unable to test due to hearing disability.~ 🆑 tweak - stop snoring if SSD /🆑 --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 767d68a56e7..c49a130cc85 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1044,7 +1044,7 @@ if(client || sleeping > 3) AdjustSleeping(-1) throw_alert("asleep", /obj/screen/alert/asleep) - if( prob(2) && health && !hal_crit ) + if( prob(2) && health && !hal_crit && client ) // VOREStation edit - no snoring if SSD spawn(0) emote("snore") //CONSCIOUS From 55bbaa7dd9ab12df3f6ade730c875a00525bb7f0 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Wed, 12 May 2021 19:58:08 -0400 Subject: [PATCH 2/2] Actually, remove VS edit comment Gonna port upstream. --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index c49a130cc85..dab0f0d18f6 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1044,7 +1044,7 @@ if(client || sleeping > 3) AdjustSleeping(-1) throw_alert("asleep", /obj/screen/alert/asleep) - if( prob(2) && health && !hal_crit && client ) // VOREStation edit - no snoring if SSD + if( prob(2) && health && !hal_crit && client ) spawn(0) emote("snore") //CONSCIOUS