From 1f1cf06978b80669b206efc2f68ed957c7444417 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Mon, 31 Mar 2025 00:00:43 +1200 Subject: [PATCH] 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 --- Content.Shared/CCVar/CCVars.Vote.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.