Adds overmap sensors to the Southern Cross (#7436)

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

* codersprites

* Adds overmap sensors to the Southern Cross
This commit is contained in:
Atermonera
2020-08-12 18:31:19 -07:00
committed by GitHub
parent 4405a84182
commit f621edf039
8 changed files with 25 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