mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-11 23:23:55 +01:00
5926589c16
* removes var/ inside all procs * . * ugh
13 lines
738 B
Plaintext
13 lines
738 B
Plaintext
|
|
/proc/communications_blackout(silent = 1)
|
|
|
|
if(!silent)
|
|
GLOB.command_announcement.Announce("Ionospheric anomalies detected. Temporary telecommunication failure imminent. Please contact you-BZZT", new_sound = ANNOUNCER_MSG_COMMSBLACKOUT)
|
|
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(EMP_HEAVY)
|