Files
VOREStation/code/modules/events/comms_blackout.dm
T
Kashargul 72628d226c More globals (#19247)
* More globals

* planets

* .

* .

* Update jukebox.dm

* Fix timer callback syntax in jukebox.dm

* .
2026-03-15 02:54:17 -04:00

13 lines
736 B
Plaintext

/proc/communications_blackout(var/silent = 1)
if(!silent)
GLOB.command_announcement.Announce("Ionospheric anomalies detected. Temporary telecommunication failure imminent. Please contact you-BZZT", new_sound = 'sound/misc/interference.ogg')
else // AIs will always know if there's a comm blackout, rogue AIs could then lie about comm blackouts in the future while they shutdown comms
for(var/mob/living/silicon/ai/A in GLOB.player_list)
to_chat(A, span_boldwarning("<br>"))
to_chat(A, span_boldwarning("Ionospheric anomalies detected. Temporary telecommunication failure imminent. Please contact you-BZZT"))
to_chat(A, span_boldwarning("<br>"))
for(var/obj/machinery/telecomms/T in GLOB.telecomms_list)
T.emp_act(1)