From 379d611b1c7eb82fd1cd99e9f8ff435c373c8b95 Mon Sep 17 00:00:00 2001 From: abnerfs Date: Sun, 17 Mar 2024 19:35:39 -0300 Subject: [PATCH] Remove debug message --- Features/EndOfMapVote.cs | 2 +- Plugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Features/EndOfMapVote.cs b/Features/EndOfMapVote.cs index e7ba403..b467eda 100644 --- a/Features/EndOfMapVote.cs +++ b/Features/EndOfMapVote.cs @@ -31,7 +31,7 @@ public EndOfMapVote(TimeLimitManager timeLimit, MaxRoundsManager maxRounds, Plug bool CheckMaxRounds() { - Server.PrintToChatAll($"Remaining rounds {_maxRounds.RemainingRounds}, remaining wins: {_maxRounds.RemainingWins}, triggerBefore {_config.TriggerRoundsBeforEnd}"); + //Server.PrintToChatAll($"Remaining rounds {_maxRounds.RemainingRounds}, remaining wins: {_maxRounds.RemainingWins}, triggerBefore {_config.TriggerRoundsBeforEnd}"); if (_maxRounds.UnlimitedRounds) return false; diff --git a/Plugin.cs b/Plugin.cs index 80f18e6..61e5a7d 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -21,7 +21,7 @@ public void ConfigureServices(IServiceCollection serviceCollection) public partial class Plugin : BasePlugin, IPluginConfig { public override string ModuleName => "RockTheVote"; - public override string ModuleVersion => "1.8.3"; + public override string ModuleVersion => "1.8.4"; public override string ModuleAuthor => "abnerfs"; public override string ModuleDescription => "https://github.com/abnerfs/cs2-rockthevote";