From 12b6cf5e5d68eab891f93a766e4f8d7f0341a2bf Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Wed, 14 Aug 2024 04:22:10 -0700 Subject: [PATCH] Make ahelp.admin_prefix default false (#30994) * Make ahelp.admin_prefix default false * More disabling Game defaults should match wizden as closely as possible. --------- Co-authored-by: Pieter-Jan Briers --- Content.Shared/CCVar/CCVars.cs | 4 ++-- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 3e9963c833..c3307c53fb 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -917,7 +917,7 @@ namespace Content.Shared.CCVar /// /// public static readonly CVarDef AhelpAdminPrefix = - CVarDef.Create("ahelp.admin_prefix", true, CVar.SERVERONLY); + CVarDef.Create("ahelp.admin_prefix", false, CVar.SERVERONLY); /// /// Should the administrator's position be displayed in the webhook. @@ -926,7 +926,7 @@ namespace Content.Shared.CCVar /// /// public static readonly CVarDef AhelpAdminPrefixWebhook = - CVarDef.Create("ahelp.admin_prefix_webhook", true, CVar.SERVERONLY); + CVarDef.Create("ahelp.admin_prefix_webhook", false, CVar.SERVERONLY); /* * Explosions diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 96656c911b..4f1b616fb2 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -39,9 +39,5 @@ deadmin_on_join = true new_player_threshold = 600 alert.min_players_sharing_connection = 2 -[ahelp] -admin_prefix = false -admin_prefix_webhook = false - [worldgen] enabled = true -- 2.52.0