mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-28 02:02:04 +00:00
Refactored sorting. Added test to verify all horizon areas (outside exceptions) are marked as station areas. Added test to verify shuttle areas are not marked as station areas. Refactored how the area sorting var is made and used. Added a global list of all areas.
21 lines
484 B
Plaintext
21 lines
484 B
Plaintext
//Config stuff
|
|
//Supply packs are in /code/defines/obj/supplypacks.dm
|
|
//Computers are in /code/game/machinery/computer/supply.dm
|
|
|
|
/obj/item/paper/manifest
|
|
name = "supply manifest"
|
|
var/is_copy = 1
|
|
|
|
/area/supply/station
|
|
name = "Supply Shuttle"
|
|
icon_state = "shuttle3"
|
|
requires_power = 0
|
|
station_area = TRUE
|
|
area_flags = AREA_FLAG_SPAWN_ROOF | AREA_FLAG_HIDE_FROM_HOLOMAP
|
|
|
|
/area/supply/dock
|
|
name = "Supply Shuttle"
|
|
icon_state = "shuttle3"
|
|
requires_power = 0
|
|
centcomm_area = 1
|