From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Sun, 30 Mar 2025 12:00:43 +0000 (+1200) Subject: More responsive votekick system (reduce timer and successive timeout) (#36044) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=1f1cf06978b80669b206efc2f68ed957c7444417;p=space-station-14.git More responsive votekick system (reduce timer and successive timeout) (#36044) * reduce votekick timer from 60 to 20 seconds * votekick timeout from 120 to 30 seconds * votekick timer duration from 20 seconds to 45, successive votekick timeout from 30 to 60 seconds --- diff --git a/Content.Shared/CCVar/CCVars.Vote.cs b/Content.Shared/CCVar/CCVars.Vote.cs index ee9fee7d3d..deb860e03c 100644 --- a/Content.Shared/CCVar/CCVars.Vote.cs +++ b/Content.Shared/CCVar/CCVars.Vote.cs @@ -146,13 +146,13 @@ public sealed partial class CCVars /// The delay for which two votekicks are allowed to be made by separate people, in seconds. /// public static readonly CVarDef VotekickTimeout = - CVarDef.Create("votekick.timeout", 120f, CVar.SERVERONLY); + CVarDef.Create("votekick.timeout", 60f, CVar.SERVERONLY); /// /// Sets the duration of the votekick vote timer. /// public static readonly CVarDef - VotekickTimer = CVarDef.Create("votekick.timer", 60, CVar.SERVERONLY); + VotekickTimer = CVarDef.Create("votekick.timer", 45, CVar.SERVERONLY); /// /// Config for how many hours playtime a player must have to get protection from the Raider votekick type when playing as an antag.