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)