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
+1 -1
View File
@@ -408,7 +408,7 @@ var/global/movement_disabled_exception //This is the client that calls the proc,
for(var/obj/machinery/door/airlock/A in world)
var/turf/T = get_turf(A)
if(istype(T, /turf/space) || istype(T, /turf/unsimulated/floor/asteroid) || isopenturf(T) || T.density)
if(istype(T, /turf/space) || istype(T, /turf/simulated/floor/exoplanet/asteroid) || isopenturf(T) || T.density)
to_chat(usr, "Airlock [A] with bad turf at ([A.x],[A.y],[A.z]) in [T.loc].")
/client/proc/get_bad_fdoors()