From bcbab3d435f762f234f6cfacca64adbdb41aabb7 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 29 十二月 2025 11:15:45 +0800
Subject: [PATCH] 0312 域名请求增加IP

---
 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