- tweak: some beauty to code

This commit is contained in:
2025-05-03 18:35:26 +03:00
parent f0d46ee28d
commit cd6b4d3ad4
2 changed files with 12 additions and 3 deletions

View File

@@ -15,7 +15,12 @@ public static class LauncherConVar
ConVarBuilder.Build<string[]>("server.favorites", []);
public static readonly ConVar<AuthServerCredentials[]> AuthServers = ConVarBuilder.Build<AuthServerCredentials[]>("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<string> CurrentLang = ConVarBuilder.Build<string>("launcher.language", "en-US");