using Robust.Shared.Configuration; namespace Content.Shared.CCVar; public sealed partial class CCVars { 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. /// public static readonly CVarDef ConsoleLoginHostUser = CVarDef.Create("console.login_host_user", "", CVar.ARCHIVE | CVar.SERVERONLY); }