/////////
// This is simply a copy of 'priority announcements' with minor edits to better fit the ATC system.
// This is required, as we don't have a PA system like most of the Bay-based servers.
/////////
/proc/atc_announce(message, title = "Airspace Announcements", sound = 'sound/misc/compiler-stage2.ogg')
if(!message)
return
for(var/mob/M in GLOB.player_list)
if(!isnewplayer(M) && M.can_hear())
to_chat(M, "[html_encode(title)]
[html_encode(message)]
")
if(M.client.prefs.toggles & SOUND_ANNOUNCEMENTS)
SEND_SOUND(M, sound('sound/misc/compiler-stage2.ogg'))