CCVars.cs: Minor inconsistency fixes. (#26744)
Update CCVars.cs * Fixes one file format inconsistency. * Adds missing </summary> closing tag. (cherry picked from commit 3817133d926c8b8c9a17f75420c8dc7ec34b6102)
This commit is contained in:
parent
79908ba0e7
commit
06f48a60fb
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue