From 2535e4d45a395bc6b8bb486e1f400042de186f0e Mon Sep 17 00:00:00 2001 From: Erika Fox <94164348+Erikafox@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:45:21 -0500 Subject: [PATCH] soul removal (#3966) ## About The Pull Request every life tick migos had a 10 percent chance to make a noise. this has been reduced to 1 ## Changelog :cl: balance: migos make less noise /:cl: --- code/modules/mob/living/simple_animal/hostile/netherworld.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/netherworld.dm b/code/modules/mob/living/simple_animal/hostile/netherworld.dm index e6a5ec66cb9a..b9d18e86d4b6 100644 --- a/code/modules/mob/living/simple_animal/hostile/netherworld.dm +++ b/code/modules/mob/living/simple_animal/hostile/netherworld.dm @@ -126,6 +126,7 @@ deathmessage = "wails as its form turns into a pulpy mush." deathsound = 'sound/voice/hiss6.ogg' phaser = FALSE + var/sound_prob = 1 /mob/living/simple_animal/hostile/netherworld/migo/asteroid faction = list("mining") @@ -147,7 +148,7 @@ ..() if(stat) return - if(prob(10)) + if(prob(sound_prob)) var/chosen_sound = pick(migo_sounds) playsound(src, chosen_sound, 50, TRUE)