From 643e616d219f35adbd2deb92ad63fa121b190171 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期一, 29 十二月 2025 11:58:15 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts
---
Main/System/Login/ServerListCenter.cs | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/Main/System/Login/ServerListCenter.cs b/Main/System/Login/ServerListCenter.cs
index 1c127c1..e5b7eb0 100644
--- a/Main/System/Login/ServerListCenter.cs
+++ b/Main/System/Login/ServerListCenter.cs
@@ -5,9 +5,12 @@
using System;
public class ServerListCenter : Singleton<ServerListCenter>
-
{
- public static readonly string[] JUMP_URL = new string[] { "http://xssgcenter.secondworld.net.cn:11000/center/server_list.php/?" };
+ public static readonly string[] JUMP_URL = new string[]
+ {
+ "http://xssgcenter.secondworld.net.cn:11000/center/server_list.php/?",
+ "http://106.55.151.92:11000/center/server_list_new.php/?"
+ };
public static string SERVERLIST_URL_COMMON = "";
public static string SERVERLIST_URL_PLAYER = "";
@@ -199,7 +202,7 @@
return;
}
- var url = StringUtility.Concat(JUMP_URL[0], "game=xssg&flag=", VersionConfig.Get().appId, "_", VersionConfig.Get().branch.ToString(), "_", VersionConfig.Get().version);
+ var url = StringUtility.Concat(JUMP_URL[jumpUrlIndex % JUMP_URL.Length], "game=xssg&flag=", VersionConfig.Get().appId, "_", VersionConfig.Get().branch.ToString(), "_", VersionConfig.Get().version);
jumpUrlIndex++;
serverUrl = url;
Debug.Log("http鍦板潃:serverlist " + url);
--
Gitblit v1.8.0