mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-25 08:23:14 +00:00
9 lines
338 B
Plaintext
9 lines
338 B
Plaintext
/datum/event/power_offline
|
|
Announce()
|
|
command_alert("The station is performing an automated power system grid check, please stand by.", "Maintenance alert")
|
|
for(var/obj/machinery/power/apc/a in world)
|
|
if(!a.crit)
|
|
a.eventoff = 1
|
|
spawn(200)
|
|
a.eventoff = 0 /*Got a few bug reports about this, disabling for now --Mloc*/
|