diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 57735e1d8c..47023850ff 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -4,14 +4,12 @@ using Content.Server.GameTicking.Events; using Content.Server.Ghost; using Content.Server.Maps; -using Content.Server.Voting.Managers; using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Players; using Content.Shared.Preferences; -using Content.Shared.Voting; using JetBrains.Annotations; using Prometheus; using Robust.Server.Maps; @@ -29,7 +27,6 @@ public sealed partial class GameTicker { [Dependency] private readonly DiscordWebhook _discord = default!; [Dependency] private readonly ITaskManager _taskManager = default!; - [Dependency] private readonly IVoteManager _vote = default!; private static readonly Counter RoundNumberMetric = Metrics.CreateCounter( "ss14_round_number", @@ -296,7 +293,7 @@ public void StartRound(bool force = false) AnnounceRound(); UpdateInfoText(); SendRoundStartedDiscordMessage(); - RaiseLocalEvent(new RoundStartedEvent(RoundId)); // Corvax + RaiseLocalEvent(new RoundStartedEvent(RoundId)); // Stories #if EXCEPTION_TOLERANCE } @@ -520,8 +517,6 @@ public void RestartRound() UpdateInfoText(); ReqWindowAttentionAll(); - _vote.CreateStandardVote(null, StandardVoteType.Map); // Stories-AutoVote - _vote.CreateStandardVote(null, StandardVoteType.Preset); // Stories-AutoVote } }