From ffeae178dae19eeba25b522e1ddfc130175a2449 Mon Sep 17 00:00:00 2001 From: TheDoktorZ Date: Mon, 25 Nov 2024 15:46:55 +0100 Subject: [PATCH] Make Restart Great Again This PR's sole purpose is restoring my sanity and was made out of spite. Restart vote requirement lowered to 75% from 85% to make holding the entire server hostage more difficult. Required ghost percentage lowered to 10% from 50% so you don't have to slaughter the entire server just to hold a vote. --- Content.Shared/CCVar/CCVars.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c64310fd7ec..0c064e9d085 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1399,7 +1399,7 @@ public static readonly CVarDef /// Config for when the restart vote should be allowed to be called based on percentage of ghosts. /// public static readonly CVarDef VoteRestartGhostPercentage = - CVarDef.Create("vote.restart_ghost_percentage", 50, CVar.SERVERONLY); + CVarDef.Create("vote.restart_ghost_percentage", 10, CVar.SERVERONLY); /// /// See vote.enabled, but specific to preset votes @@ -1417,7 +1417,7 @@ public static readonly CVarDef /// The required ratio of the server that must agree for a restart round vote to go through. /// public static readonly CVarDef VoteRestartRequiredRatio = - CVarDef.Create("vote.restart_required_ratio", 0.85f, CVar.SERVERONLY); + CVarDef.Create("vote.restart_required_ratio", 0.75f, CVar.SERVERONLY); /// /// Whether or not to prevent the restart vote from having any effect when there is an online admin