55dd64fdc2
This commit removes lights from the process list, about 500 of them on the current map. The purpose of this is to reduce lag from the master controller ticker.
17 lines
331 B
Plaintext
17 lines
331 B
Plaintext
// channel numbers for power
|
|
#define EQUIP 1
|
|
#define LIGHT 2
|
|
#define ENVIRON 3
|
|
#define TOTAL 4 //for total power used only
|
|
#define STATIC_EQUIP 5
|
|
#define STATIC_LIGHT 6
|
|
#define STATIC_ENVIRON 7
|
|
|
|
|
|
//bitflags for door switches.
|
|
#define OPEN 1
|
|
#define IDSCAN 2
|
|
#define BOLTS 4
|
|
#define SHOCK 8
|
|
#define SAFE 16
|