From 108236aab3c83b5780d5c1aac8b485c1a1c22de4 Mon Sep 17 00:00:00 2001 From: Errant <35878406+dmnct@users.noreply.github.com> Date: Tue, 4 Jul 2023 07:30:57 +0000 Subject: [PATCH] Set admin only debug coords default true (#17811) * Hide debug coordinates for non-admins * Added server cvar * Switched default setting to hide coords --- 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 31fe466eec..bfd2ac7053 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -289,7 +289,7 @@ namespace Content.Shared.CCVar /// Whether or not coordinates on the Debug overlay should only be available to admins. /// public static readonly CVarDef DebugCoordinatesAdminOnly = - CVarDef.Create("game.debug_coordinates_admin_only", false, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("game.debug_coordinates_admin_only", true, CVar.SERVER | CVar.REPLICATED); #if EXCEPTION_TOLERANCE ///