From 3817133d926c8b8c9a17f75420c8dc7ec34b6102 Mon Sep 17 00:00:00 2001 From: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:42:06 +0200 Subject: [PATCH] CCVars.cs: Minor inconsistency fixes. (#26744) Update CCVars.cs * Fixes one file format inconsistency. * Adds missing closing tag. --- Content.Shared/CCVar/CCVars.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c9b582faf0..c9271331f3 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -543,8 +543,8 @@ namespace Content.Shared.CCVar * Console */ - public static readonly CVarDef - ConsoleLoginLocal = CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY); + public static readonly CVarDef ConsoleLoginLocal = + CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY); /// /// Automatically log in the given user as host, equivalent to the promotehost command. @@ -836,6 +836,7 @@ namespace Content.Shared.CCVar /// /// Should the ban details in admin channel include PII? (IP, HWID, etc) + /// public static readonly CVarDef AdminShowPIIOnBan = CVarDef.Create("admin.show_pii_onban", false, CVar.SERVERONLY); -- 2.52.0