diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index 30bb5c6e34..55e88e2a8c 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -214,7 +214,8 @@ namespace Content.Server.Voting.Managers } else { - _chatManager.DispatchServerAnnouncement(Loc.GetString("ui-vote-map-notlobby-time")); + var timeString = $"{ticker.RoundPreloadTime.Minutes:0}:{ticker.RoundPreloadTime.Seconds:00}"; + _chatManager.DispatchServerAnnouncement(Loc.GetString("ui-vote-map-notlobby-time", ("time", timeString))); } } }; diff --git a/Resources/Locale/en-US/voting/managers/vote-manager.ftl b/Resources/Locale/en-US/voting/managers/vote-manager.ftl index 18b67464f6..06de3e77c1 100644 --- a/Resources/Locale/en-US/voting/managers/vote-manager.ftl +++ b/Resources/Locale/en-US/voting/managers/vote-manager.ftl @@ -17,5 +17,5 @@ ui-vote-gamemode-win = { $winner } won the gamemode vote! ui-vote-map-title = Next map ui-vote-map-tie = Tie for map vote! Picking... { $picked } ui-vote-map-win = { $winner } won the map vote! -ui-vote-map-notlobby-time = Voting for maps is only valid in the pre-round lobby! +ui-vote-map-notlobby = Voting for maps is only valid in the pre-round lobby! ui-vote-map-notlobby-time = Voting for maps is only valid in the pre-round lobby with { $time } remaining!