Files
2020-02-16 19:40:21 -08:00

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)