mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
18 lines
436 B
Plaintext
18 lines
436 B
Plaintext
/*
|
|
|
|
Zone Air System:
|
|
|
|
This air system divides the station into impermeable areas called zones.
|
|
When something happens, i.e. a door opening or a wall being taken down,
|
|
zones equalize and eventually merge. Making an airtight area closes the connection again.
|
|
|
|
Important Functions:
|
|
|
|
air_master.mark_for_update(turf)
|
|
When stuff happens, call this. It works on everything.
|
|
|
|
*/
|
|
|
|
#define AIR_BLOCKED 1
|
|
#define ZONE_BLOCKED 2
|
|
#define BLOCKED 3 |