From c1e0e7e05872a10b1b3f8b4d8e96dbd01aeaca20 Mon Sep 17 00:00:00 2001 From: Moony Date: Thu, 25 Nov 2021 13:30:36 -0600 Subject: [PATCH] Unfuck the lobby countdown timer (#5519) --- Content.Client/Lobby/LobbyState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 636f8bd3f8..38fcc66da9 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -154,7 +154,7 @@ namespace Content.Client.Lobby } else { - text = $"{(int) Math.Floor(difference.TotalMinutes / 60)}:{difference.Seconds:D2}"; + text = $"{difference.Minutes}:{difference.Seconds:D2}"; } }