MAJOR antag backend update - you cannot bruteforce the pen anymore - uplink now uses bitflag to lock purchases - poplock is handled entirely by the buyable uplink items - tgui antag intro (for selected ones)
11 lines
318 B
Plaintext
11 lines
318 B
Plaintext
// These are used in uplink_devices.dm to determine whether or not an item is purchasable.
|
|
|
|
/// This item is purchasable to traitors
|
|
#define UPLINK_TRAITORS (1 << 0)
|
|
|
|
/// This item is purchasable to nuke ops
|
|
#define UPLINK_NUKE_OPS (1 << 1)
|
|
|
|
/// This item is purchasable to clown ops
|
|
#define UPLINK_CLOWN_OPS (1 << 2)
|