From 657c92b80d701a1e2d467ff6586edb37db757cfd Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Tue, 21 Mar 2017 20:22:54 -0400 Subject: [PATCH] Removes "Scarry Sounds" Random Loop --- code/modules/mob/living/carbon/human/life.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 275828fc97e..624b4a9ca84 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -958,13 +958,6 @@ adjustToxLoss(-3) lastpuke = 0 - //0.1% chance of playing a scary sound to someone who's in complete darkness - if(isturf(loc) && rand(1,1000) == 1) - var/turf/currentTurf = loc - var/atom/movable/lighting_overlay/L = locate(/atom/movable/lighting_overlay) in currentTurf - if(L && L.lum_r + L.lum_g + L.lum_b == 0) - playsound_local(src,pick(scarySounds),50, 1, -1) - /mob/living/carbon/human/handle_changeling() if(mind) if(mind.changeling)