From ff448d277850439592b393f6e3dd2a11c3b4078b Mon Sep 17 00:00:00 2001 From: Kara Date: Wed, 12 Oct 2022 17:55:42 -0700 Subject: [PATCH] Disable restart vote as hotfix (#11878) --- Content.Shared/CCVar/CCVars.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 91b07c667b..1fd9bd43cc 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -874,11 +874,12 @@ namespace Content.Shared.CCVar public static readonly CVarDef VoteEnabled = CVarDef.Create("vote.enabled", true, CVar.SERVERONLY); + // TODO HUD REFACTOR REENABLE /// /// See vote.enabled, but specific to restart votes /// public static readonly CVarDef VoteRestartEnabled = - CVarDef.Create("vote.restart_enabled", true, CVar.SERVERONLY); + CVarDef.Create("vote.restart_enabled", false, CVar.SERVERONLY); /// /// See vote.enabled, but specific to preset votes