mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Merge branch 'release' of https://github.com/VOREStation/VOREStation into izac-voreupdate
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
/datum/event/electrical_storm/start()
|
||||
..()
|
||||
valid_apcs = list()
|
||||
for(var/obj/machinery/power/apc/A in global.machines)
|
||||
for(var/obj/machinery/power/apc/A in GLOB.apcs)
|
||||
if(A.z in affecting_z)
|
||||
valid_apcs.Add(A)
|
||||
endWhen = (severity * 60) + startWhen
|
||||
|
||||
@@ -199,14 +199,14 @@ Would like to add a law like "Law x is _______" where x = a number, and _____ is
|
||||
|
||||
spawn(0)
|
||||
to_world("Started processing APCs")
|
||||
for (var/obj/machinery/power/apc/APC in machines)
|
||||
for (var/obj/machinery/power/apc/APC in GLOB.apcs)
|
||||
if(APC.z in station_levels)
|
||||
APC.ion_act()
|
||||
apcnum++
|
||||
to_world("Finished processing APCs. Processed: [apcnum]")
|
||||
spawn(0)
|
||||
to_world("Started processing SMES")
|
||||
for (var/obj/machinery/power/smes/SMES in machines)
|
||||
for (var/obj/machinery/power/smes/SMES in GLOB.smeses)
|
||||
if(SMES.z in station_levels)
|
||||
SMES.ion_act()
|
||||
smesnum++
|
||||
|
||||
Reference in New Issue
Block a user