From e889d49f94e4683fea43195d0c0781abae04ac80 Mon Sep 17 00:00:00 2001 From: sleepyyapril <123355664+sleepyyapril@users.noreply.github.com> Date: Tue, 12 Nov 2024 22:46:45 -0400 Subject: [PATCH] remove unused cvars --- Content.Shared/CCVar/CCVars.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 7ef691f336..657726cea4 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2005,7 +2005,7 @@ public static readonly CVarDef /// Allow Ethereal Ent to PassThrough Walls/Objects while in Ethereal. /// public static readonly CVarDef EtherealPassThrough = - CVarDef.Create("ic.EtherealPassThrough", false, CVar.SERVER); + CVarDef.Create("ic.EtherealPassThrough", true, CVar.SERVER); /* * Salvage @@ -2065,7 +2065,7 @@ public static readonly CVarDef /// Time that players have to wait before rules can be accepted. /// public static readonly CVarDef RulesWaitTime = - CVarDef.Create("rules.time", 10f, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("rules.time", 60f, CVar.SERVER | CVar.REPLICATED); /// /// Don't show rules to localhost/loopback interface. @@ -2641,12 +2641,6 @@ public static readonly CVarDef #endregion - /// - /// Set to true to disable parallel processing in the pow3r solver. - /// - public static readonly CVarDef DebugPow3rDisableParallel = - CVarDef.Create("debug.pow3r_disable_parallel", true, CVar.SERVERONLY); - /* * AUTOVOTE SYSTEM */