mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-27 17:17:50 +01:00
8e357dd556
* EMP Refactor * EVERYBODY gets wires * Shield gen * fix * Fix those * Changes * , * kill --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
13 lines
459 B
Plaintext
13 lines
459 B
Plaintext
/// 33554431 (2^24 - 1) is the maximum value our bitflags can reach.
|
|
#define MAX_BITFLAG_DIGITS 8
|
|
|
|
///Object will protect itself.
|
|
#define EMP_PROTECT_SELF (1<<0)
|
|
///Object will protect its contents from being EMPed.
|
|
#define EMP_PROTECT_CONTENTS (1<<1)
|
|
///Object will protect its wiring from being EMPed.
|
|
#define EMP_PROTECT_WIRES (1<<2)
|
|
|
|
///Protects against all EMP types.
|
|
#define EMP_PROTECT_ALL (EMP_PROTECT_SELF | EMP_PROTECT_CONTENTS | EMP_PROTECT_WIRES)
|