From cd6b4d3ad4af0c6c729c3147ef691c325eda37d0 Mon Sep 17 00:00:00 2001 From: Cinka Date: Sat, 3 May 2025 18:35:26 +0300 Subject: [PATCH] - tweak: some beauty to code --- Nebula.Launcher/LauncherConVar.cs | 7 ++++++- Nebula.Shared/CurrentConVar.cs | 8 ++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) 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 =