removes uses of << sound, replaces with send_sound (#21774)

* removes uses of << sound, replaces with send_sound

* readds sound wrappers
This commit is contained in:
GDN
2023-07-27 15:57:04 +01:00
committed by GitHub
parent aab87dff3c
commit 067ce5670e
11 changed files with 19 additions and 19 deletions
@@ -714,6 +714,6 @@
//if you made it this far: congratulations! you are now a religious zealot!
target.mind.make_zealot(missionary, convert_duration, team_color)
target << sound('sound/misc/wololo.ogg', 0, 1, 25)
SEND_SOUND(target, sound('sound/misc/wololo.ogg', volume = 25))
missionary.say("WOLOLO!")
missionary << sound('sound/misc/wololo.ogg', 0, 1, 25)
SEND_SOUND(missionary, sound('sound/misc/wololo.ogg', volume = 25))
@@ -51,7 +51,7 @@
if(!L.stat)
L.do_alert_animation(L)
egged = 1
alerted << sound('sound/machines/chime.ogg')
SEND_SOUND(alerted, sound('sound/machines/chime.ogg'))
return ..()
/mob/living/proc/do_alert_animation(atom/A)