diff --git a/Nebula.Launcher/LauncherConVar.cs b/Nebula.Launcher/LauncherConVar.cs index 57da4ca..f10a8e4 100644 --- a/Nebula.Launcher/LauncherConVar.cs +++ b/Nebula.Launcher/LauncherConVar.cs @@ -15,7 +15,12 @@ public static class LauncherConVar ConVarBuilder.Build("server.favorites", []); public static readonly ConVar AuthServers = ConVarBuilder.Build("launcher.authServers", [ - new AuthServerCredentials("WizDen", ["https://auth.spacestation14.com/", "https://auth.fallback.spacestation14.com/"]) + new AuthServerCredentials( + "WizDen", + [ + "https://auth.spacestation14.com/", + "https://auth.fallback.spacestation14.com/" + ]) ]); public static readonly ConVar CurrentLang = ConVarBuilder.Build("launcher.language", "en-US"); diff --git a/Nebula.Shared/CurrentConVar.cs b/Nebula.Shared/CurrentConVar.cs index 5168f22..6b31385 100644 --- a/Nebula.Shared/CurrentConVar.cs +++ b/Nebula.Shared/CurrentConVar.cs @@ -12,7 +12,8 @@ public static class CurrentConVar ]); public static readonly ConVar EngineModuleManifestUrl = - ConVarBuilder.Build("engine.moduleManifestUrl", [ + ConVarBuilder.Build("engine.moduleManifestUrl", + [ "https://robust-builds.cdn.spacestation14.com/modules.json", "https://robust-builds.fallback.cdn.spacestation14.com/modules.json" ]); @@ -24,7 +25,10 @@ public static class CurrentConVar ConVarBuilder.Build("engine.robustAssemblyName", "Robust.Client"); public static readonly ConVar Hub = ConVarBuilder.Build("launcher.hub", [ - ["https://hub.spacestation14.com/api/servers", "https://auth.fallback.spacestation14.com/"] + [ + "https://hub.spacestation14.com/api/servers", + "https://auth.fallback.spacestation14.com/" + ] ]); public static readonly ConVar> EngineManifestBackup =