mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-08-25 04:56:14 +01:00
11 lines
311 B
Plaintext
11 lines
311 B
Plaintext
// Largely used for handling auto turfs that update their appearance
|
|
// to "connect" to nearby walls
|
|
|
|
// Turfs add themselves to this in their New()
|
|
/var/global/list/worldgenCandidates = list()
|
|
|
|
/proc/initialize_worldgen()
|
|
for(var/turf/U in worldgenCandidates)
|
|
U.generate_worldgen()
|
|
LAGCHECK(LAG_REALTIME)
|