Fixes lobby station timer (#10261)

This commit is contained in:
Jessica M
2022-08-02 18:30:10 -07:00
committed by GitHub
parent 20b0c867c4
commit b97f0f033e
2 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ namespace Content.Client.Lobby
if (gameTicker.IsGameStarted)
{
_lobby.StartTime.Text = string.Empty;
_lobby.StationTime.Text = Loc.GetString("lobby-state-player-status-station-time", ("stationTime", _gameTiming.RealTime.Subtract(_gameTicker.RoundStartTimeSpan).ToString("hh\\:mm")));
_lobby.StationTime.Text = Loc.GetString("lobby-state-player-status-station-time", ("stationTime", _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan).ToString("hh\\:mm")));
return;
}