Added the z-level manager system from TG (#19532)

Added the z-level manager system from TG, mostly
This commit is contained in:
Fluffy
2024-07-22 13:00:38 +00:00
committed by GitHub
parent 0a9176841c
commit 1345beac4b
90 changed files with 614 additions and 245 deletions
+2 -2
View File
@@ -287,7 +287,7 @@
/obj/machinery/shield_gen/proc/getzabove(var/turf/location)
var/connected = list()
var/turf/above = GetAbove(location)
var/turf/above = GET_TURF_ABOVE(location)
if(above)
connected += above
@@ -299,7 +299,7 @@
/obj/machinery/shield_gen/proc/getzbelow(var/turf/location)
var/connected = list()
var/turf/below = GetBelow(location)
var/turf/below = GET_TURF_BELOW(location)
if(below)
connected += below