[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>
This commit is contained in:
SkyratBot
2022-06-03 14:42:34 +01:00
committed by GitHub
co-authored by Profakos
parent ec37e4bb5c
commit 3d2aafc96d
+1 -1
View File
@@ -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)