mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-15 03:27:46 +00:00
* 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>
15 lines
502 B
Plaintext
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)
|
|
|