Skip to content

Commit

Permalink
and chat messages
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Nov 14, 2023
1 parent 2e062cb commit 52cf713
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@
/mob/living/carbon/xenomorph/crusher/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number, ai_hard_off = FALSE)
. = ..()

playsound(src, 'sound/voice/alien_crusher_spawn.ogg', 100, 1, 30)
playsound(src, 'sound/voice/alien_crusher_spawn.ogg', 100, FALSE, 30)
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)
to_chat(current_mob, SPAN_HIGHDANGER("You hear a terrible roar coming from [final_dir ? "the [final_dir]" : "nearby"] as the ground shakes!"))

// Refactored to handle all of crusher's interactions with object during charge.
/mob/living/carbon/xenomorph/proc/handle_collision(atom/target)
Expand Down

0 comments on commit 52cf713

Please sign in to comment.