From 6f957bb87b1ee2de4c661eb3a1899f581771857e Mon Sep 17 00:00:00 2001 From: Anthemic <93178783+jproads@users.noreply.github.com> Date: Mon, 1 Aug 2022 17:36:01 +0800 Subject: [PATCH] Increase players per traitor (#10216) * Decrease traitor count * Revert max traitor decrease * Increase players per traitor to 10 Requested by mirror --- Content.Shared/CCVar/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index f7bd265b7c..7024395d0f 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -265,7 +265,7 @@ namespace Content.Shared.CCVar CVarDef.Create("traitor.max_traitors", 12); // Assuming average server maxes somewhere from like 50-80 people public static readonly CVarDef TraitorPlayersPerTraitor = - CVarDef.Create("traitor.players_per_traitor", 5); + CVarDef.Create("traitor.players_per_traitor", 10); public static readonly CVarDef TraitorCodewordCount = CVarDef.Create("traitor.codeword_count", 4);