Merge pull request #5048 from VOREStation/upstream-merge-6065

[MIRROR] Allows restriction of z-levels from spawning xenoarch finds
This commit is contained in:
Novacat
2019-04-14 03:08:41 -04:00
committed by GitHub
6 changed files with 4 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ SUBSYSTEM_DEF(xenoarch)
/datum/controller/subsystem/xenoarch/proc/SetupXenoarch()
for(var/turf/simulated/mineral/M in turfs)
if(!M.density || M.z in using_map.xenoarch_exempt_levels) //VOREStation Edit: exclude some Z-levels from xenoarch spawns
if(!M.density || M.z in using_map.xenoarch_exempt_levels)
continue
if(isnull(M.geologic_data))