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}"; } }