mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
* Creates the SSair subsystem which replaces the Setup, Start(), and Tick() procs of air_master. * It may be best to have SSair completely replace air_master, but for now we are having them work together. It does completely replace the old processScheduer air ticker however. * Remove the obsolete Setup and Tick procs. * Adjust admin and debug verbs that dealt with some ZAS internals to work with the new implementation.
7 lines
343 B
Plaintext
7 lines
343 B
Plaintext
// Bitflag values for c_airblock()
|
|
#define AIR_BLOCKED 1 // Blocked
|
|
#define ZONE_BLOCKED 2 // Not blocked, but zone boundaries will not cross.
|
|
#define BLOCKED 3 // Blocked, zone boundaries will not cross even if opened.
|
|
|
|
#define ZONE_MIN_SIZE 14 // Zones with less than this many turfs will always merge, even if the connection is not direct
|