Files
Aurora.3/maps/runtime/code/runtime_unittest.dm
Kano 465e34d509 Some tweaks for the runtime map (#22755)
## About PR

- Adds a latejoin landmark, this was causing a runtime when
`LateSpawn()` weren't able to find any (somehow missed this after the
remap, oops)

- Adds some sections for kitchen and disposal testing, among a few other
qol changes

- Removes some ancient area definitions (most of it unused) from the
code. Some of these were used in the old runtime map and
`vault_unique.dmm`, which is also removed in this pr since it no longer
spawns
2026-06-26 18:19:40 +00:00

38 lines
1.0 KiB
Plaintext

/datum/map/runtime
ut_environ_exempt_areas = list(
/area/space,
/area/runtime/exterior
)
ut_apc_exempt_areas = list(
/area/runtime/floor_one/warehouse/package,
/area/supply/dock,
/area/horizon/hangar/operations, // yes, this exists in the runtime map. Cargo elevator is a shuttle and it'll replace the area of where it lands
/area/centcom, // yes, this is annoying
)
ut_atmos_exempt_areas = list(/area)
ut_fire_exempt_areas = list(
/area/runtime/floor_one/main,
/area/runtime/floor_one/construction,
/area/runtime/floor_one/atmospherics,
/area/runtime/floor_one/warehouse,
/area/runtime/floor_one/warehouse/package,
/area/runtime/floor_two/main,
/area/runtime/floor_two/comms,
/area/runtime/floor_two/bridge,
/area/runtime/exterior,
/area/shuttle/runtime,
/area/space,
/area/turbolift,
/area/supply/dock,
/area/horizon/hangar/operations,
/area/centcom
)
excluded_test_types = list(
/datum/unit_test/zas_area_test,
/datum/unit_test/foundation/step_shall_return_true_on_success
)