Files
Bubberstation/code/__DEFINES/uplink.dm
SkyratBot 3d2aafc96d [MIRROR] Makes traitor reputation display consistent [MDB IGNORE] (#14074)
* Makes traitor reputation display consistent (#67341)

* Makes traitor reputation properly show how much reputation you have, by dividing by 60 instead of 600

* Makes traitor reputation display consistent

Co-authored-by: Profakos <profakos@gmail.com>
2022-06-03 14:42:34 +01:00

15 lines
502 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)
/// Progression gets turned into a user-friendly form. This is just an abstract equation that makes progression not too large.
#define DISPLAY_PROGRESSION(time) round(time/60, 0.01)