mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-17 10:57:19 +01:00
465e34d509
## 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
38 lines
1.0 KiB
Plaintext
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
|
|
)
|