From 1228f38976023ef1a0fbc875e6e5a481eb2bc09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=82=D0=BE?= <65656972+xDanilcusx@users.noreply.github.com> Date: Fri, 12 Apr 2024 14:11:21 +0300 Subject: [PATCH] Slightly reduces crusher spawn sound falloff (#232) --- code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm index 780a46ca12..7d1d9f98b5 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm @@ -83,7 +83,7 @@ . = ..() AddComponent(/datum/component/footstep, 2, 50, 15, 1, "metalbang") - playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30) + playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30, falloff = 5) for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src) var/relative_dir = get_dir(current_mob, src) var/final_dir = dir2text(relative_dir)