diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm index aa2a26d2c4..780a46ca12 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm @@ -81,7 +81,7 @@ /mob/living/carbon/xenomorph/crusher/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number, ai_hard_off = FALSE) . = ..() - AddComponent(/datum/component/footstep, 2, 25, 15, 1, "metalbang") + AddComponent(/datum/component/footstep, 2, 50, 15, 1, "metalbang") playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30) for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src) @@ -91,7 +91,7 @@ /mob/living/carbon/xenomorph/crusher/death(cause, gibbed) . = ..() - playsound(src, 'sound/voice/alien_crusher_death.ogg', 50) + playsound(src, 'sound/voice/alien_crusher_death.ogg', 50, FALSE, 15) // Refactored to handle all of crusher's interactions with object during charge. diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm b/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm index 1ef9b1993c..81a3eb74d2 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm @@ -81,4 +81,4 @@ /mob/living/carbon/xenomorph/drone/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number, ai_hard_off = FALSE) . = ..() - AddComponent(/datum/component/footstep, 3, 100, 9, 1, "alien_footstep_small") + AddComponent(/datum/component/footstep, 3, 100, 12, 1, "alien_footstep_small") diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm index 121be42976..4c4e7ba482 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm @@ -73,7 +73,7 @@ /mob/living/carbon/xenomorph/runner/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number, ai_hard_off = FALSE) . = ..() - AddComponent(/datum/component/footstep, 2, 100, 9, 1, "alien_footstep_small") + AddComponent(/datum/component/footstep, 2, 100, 12, 1, "alien_footstep_small") /mob/living/carbon/xenomorph/runner/initialize_pass_flags(datum/pass_flags_container/pass_flags_container) ..()