Enables overmap on SC, adds Sif to SC skybox (#6954)

* Enables overmap on SC, adds wip Sif to SC skybox

* codersprites
This commit is contained in:
Atermonera
2020-06-17 16:12:20 -07:00
committed by Leshana
parent 730e5899ce
commit ebe7bd1975
10 changed files with 119 additions and 7 deletions

View File

@@ -37,6 +37,8 @@ var/list/z_levels = list()// Each bit re... haha just kidding this is a list of
return HasBelow(turf.z) ? get_step(turf, DOWN) : null
/proc/GetConnectedZlevels(z)
if(z in using_map.map_levels)
return using_map.get_map_levels(z, FALSE) // Connected z levels aren't necessarily attached by multi-z, using_map shound know the details
. = list(z)
for(var/level = z, HasBelow(level), level--)
. |= level-1