]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
CCVars.cs: Minor inconsistency fixes. (#26744)
authorTsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com>
Fri, 5 Apr 2024 07:42:06 +0000 (09:42 +0200)
committerGitHub <noreply@github.com>
Fri, 5 Apr 2024 07:42:06 +0000 (09:42 +0200)
Update CCVars.cs

* Fixes one file format inconsistency.
* Adds missing </summary> closing tag.

Content.Shared/CCVar/CCVars.cs

index c9b582faf054069e67cfee8ad435f80acf6ed3ea..c9271331f31c4546bdbb58108049564f507aa063 100644 (file)
@@ -543,8 +543,8 @@ namespace Content.Shared.CCVar
          * Console
          */
 
-        public static readonly CVarDef<bool>
-            ConsoleLoginLocal = CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY);
+        public static readonly CVarDef<bool> ConsoleLoginLocal =
+            CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY);
 
         /// <summary>
         /// Automatically log in the given user as host, equivalent to the <c>promotehost</c> command.
@@ -836,6 +836,7 @@ namespace Content.Shared.CCVar
 
         /// <summary>
         ///     Should the ban details in admin channel include PII? (IP, HWID, etc)
+        /// </summary>
         public static readonly CVarDef<bool> AdminShowPIIOnBan =
             CVarDef.Create("admin.show_pii_onban", false, CVar.SERVERONLY);