mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
13 lines
248 B
Plaintext
13 lines
248 B
Plaintext
/proc/create_all_lighting_objects()
|
|
for(var/area/A in GLOB.all_areas)
|
|
if(!IS_DYNAMIC_LIGHTING(A))
|
|
continue
|
|
|
|
for(var/turf/T in A)
|
|
if(!IS_DYNAMIC_LIGHTING(T))
|
|
continue
|
|
|
|
new/atom/movable/lighting_object(T)
|
|
CHECK_TICK
|
|
CHECK_TICK
|