From bed4f26f955391458e212675eca6c7f8ca02ff71 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 26 Apr 2020 12:05:49 -0400 Subject: [PATCH] Fix what's considered station levels --- code/modules/overmap/sectors.dm | 2 ++ maps/tether/tether_defines.dm | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/overmap/sectors.dm b/code/modules/overmap/sectors.dm index a4dfc1118a..faa1a92254 100644 --- a/code/modules/overmap/sectors.dm +++ b/code/modules/overmap/sectors.dm @@ -70,10 +70,12 @@ global.using_map.player_levels |= map_z if(!in_space) global.using_map.sealed_levels |= map_z + /* VOREStation Removal - We have a map system that does this already. if(base) global.using_map.station_levels |= map_z global.using_map.contact_levels |= map_z global.using_map.map_levels |= map_z + */ /obj/effect/overmap/visitable/proc/get_space_zlevels() if(in_space) diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index c3ab050785..8a03e8ade7 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -307,7 +307,7 @@ /datum/map_z_level/tether/transit z = Z_LEVEL_TRANSIT name = "Transit" - flags = MAP_LEVEL_SEALED|MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + flags = MAP_LEVEL_STATION|MAP_LEVEL_SEALED|MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT /datum/map_z_level/tether/station/space_low z = Z_LEVEL_SPACE_LOW @@ -336,11 +336,11 @@ /datum/map_z_level/tether/mine z = Z_LEVEL_SURFACE_MINE name = "Mining Outpost" - flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED + flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED base_turf = /turf/simulated/floor/outdoors/rocks/virgo3b /datum/map_z_level/tether/solars z = Z_LEVEL_SOLARS name = "Solar Field" - flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED + flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED base_turf = /turf/simulated/floor/outdoors/rocks/virgo3b