turf
New()
..()
spawn(100) testing.test(src)
var/testing/testing = new()
testing
proc/test(t)
for(var/turf/tt in oview(t, 1))
world << "[tt] is done"
On a 256x256 map, you can comment out the spawn line and it will load in less than a second, uncomment out that line, and the map will literally not load for a very long time (despite calling spawn to have this happen later)
Why is the server waiting?