- tweak: use proxy

This commit is contained in:
2025-06-15 16:29:15 +03:00
parent 2d8c1b4d96
commit c4ff903c57
2 changed files with 4 additions and 4 deletions

View File

@@ -20,13 +20,13 @@ public static class LauncherConVar
new AuthServerCredentials( new AuthServerCredentials(
"WizDen", "WizDen",
[ [
"https://auth.spacestation14.com/", "https://harpy.durenko.tatar/auth-api/",
"https://auth.fallback.spacestation14.com/" "https://auth.fallback.spacestation14.com/"
]) ])
]); ]);
public static readonly ConVar<ServerHubRecord[]> Hub = ConVarBuilder.Build<ServerHubRecord[]>("launcher.hub.v2", [ public static readonly ConVar<ServerHubRecord[]> Hub = ConVarBuilder.Build<ServerHubRecord[]>("launcher.hub.v2", [
new ServerHubRecord("WizDen", "https://hub.spacestation14.com/api/servers", null), new ServerHubRecord("WizDen", "https://harpy.durenko.tatar/hub-api/api/servers", null),
new ServerHubRecord("AltHub","https://web.networkgamez.com/api/servers",null) new ServerHubRecord("AltHub","https://web.networkgamez.com/api/servers",null)
]); ]);

View File

@@ -7,14 +7,14 @@ public static class CurrentConVar
{ {
public static readonly ConVar<string[]> EngineManifestUrl = public static readonly ConVar<string[]> EngineManifestUrl =
ConVarBuilder.Build<string[]>("engine.manifestUrl", [ ConVarBuilder.Build<string[]>("engine.manifestUrl", [
"https://robust-builds.cdn.spacestation14.com/manifest.json", "https://harpy.durenko.tatar/manifests/manifest",
"https://robust-builds.fallback.cdn.spacestation14.com/manifest.json" "https://robust-builds.fallback.cdn.spacestation14.com/manifest.json"
]); ]);
public static readonly ConVar<string[]> EngineModuleManifestUrl = public static readonly ConVar<string[]> EngineModuleManifestUrl =
ConVarBuilder.Build<string[]>("engine.moduleManifestUrl", ConVarBuilder.Build<string[]>("engine.moduleManifestUrl",
[ [
"https://robust-builds.cdn.spacestation14.com/modules.json", "https://harpy.durenko.tatar/manifests/modules",
"https://robust-builds.fallback.cdn.spacestation14.com/modules.json" "https://robust-builds.fallback.cdn.spacestation14.com/modules.json"
]); ]);