Speeds up init by ignoring contrib guidelines (#16217)

This commit is contained in:
Wildkins
2023-04-19 16:57:56 -04:00
committed by GitHub
parent 5cbd5dcc5a
commit c8d4ef3b97
19 changed files with 35 additions and 35 deletions

View File

@@ -683,8 +683,9 @@
P.icon_state = "anom"
P.name = "wormhole"
var/list/pick_turfs = list()
for(var/turf/simulated/floor/exit in turfs)
if(isStationLevel(exit.z))
for(var/turf/TIW in world)
var/turf/simulated/floor/exit = TIW
if(istype(exit) && isStationLevel(exit.z))
pick_turfs += exit
P.target = pick(pick_turfs)
QDEL_IN(P, rand(150,300))