Replaced the outside turfs with exoplanet ones for the digsite (#20066)

Replaced the outside turfs with exoplanet ones for the digsite.
Fixed some exoplanet areas not having an exoplanet base turf.
Wrote a unit test for exoplanet areas to ensure they have an exoplanet
base turf.
This commit is contained in:
Fluffy
2024-10-20 18:49:39 +00:00
committed by GitHub
parent b1c8350a83
commit 404c90f688
69 changed files with 739 additions and 640 deletions
@@ -33,7 +33,7 @@ SUBSYSTEM_DEF(holomap)
/turf/unsimulated/mineral,
))
var/static/list/mineral_floor_tcache = typecacheof(list(
/turf/unsimulated/floor/asteroid,
/turf/simulated/floor/exoplanet/asteroid,
/turf/simulated/mineral,
/turf/simulated/floor/exoplanet,
))
@@ -46,7 +46,7 @@ SUBSYSTEM_DEF(holomap)
var/static/list/rock_tcache = typecacheof(list(
/turf/simulated/mineral,
/turf/unsimulated/floor/asteroid,
/turf/simulated/floor/exoplanet/asteroid,
/turf/simulated/open
))
var/static/list/obstacle_tcache = typecacheof(list(
@@ -57,7 +57,7 @@ SUBSYSTEM_DEF(holomap)
var/static/list/path_tcache = typecacheof(list(
/turf/simulated/floor,
/turf/unsimulated/floor
)) - typecacheof(/turf/unsimulated/floor/asteroid)
)) - typecacheof(/turf/simulated/floor/exoplanet/asteroid)
/datum/controller/subsystem/holomap/Initialize()
generate_all_minimaps()