From 3d2aafc96d856322832dab9e488405bbbcef62b3 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 3 Jun 2022 15:42:34 +0200 Subject: [PATCH] [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 --- code/__DEFINES/uplink.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/uplink.dm b/code/__DEFINES/uplink.dm index 3a7b847057c..d8cda44e591 100644 --- a/code/__DEFINES/uplink.dm +++ b/code/__DEFINES/uplink.dm @@ -10,5 +10,5 @@ #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/600, 0.01) +#define DISPLAY_PROGRESSION(time) round(time/60, 0.01)