From 0fa617a09eedf6bdb25eda55fac1d3344859fd93 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期二, 31 三月 2026 19:46:31 +0800
Subject: [PATCH] webgl

---
 Main/Utility/OperationLogCollect.cs |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Main/Utility/OperationLogCollect.cs b/Main/Utility/OperationLogCollect.cs
index 0b105ab..ca01902 100644
--- a/Main/Utility/OperationLogCollect.cs
+++ b/Main/Utility/OperationLogCollect.cs
@@ -8,7 +8,7 @@
 public class OperationLogCollect : Singleton<OperationLogCollect>
 {
 
-    const string bugReportUrl = "http://xssgcenter.secondworld.net.cn:11000/center/eventreport.php?";
+    const string bugReportUrl = "http://gamecenter.secondworld.net.cn:11000/center/eventreport.php?";
 
     public void BugReport(string _title, string _content)
     {
@@ -19,7 +19,7 @@
         tables["EventID"] = 9002.ToString();
         tables["ProductID"] = VersionConfig.Get().gameId;
         tables["Time"] = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-        tables["IP"] = DeviceUtility.GetIp();
+        tables["IP"] = DeviceUtility.GetCachedIp();
         tables["AccountID"] = LoginManager.Instance.sdkLoginResult.account;
         tables["Level"] = PlayerDatas.Instance.baseData.LV.ToString();
         tables["RoleID"] = PlayerDatas.Instance.baseData.PlayerName;
@@ -54,7 +54,7 @@
             tables["EventID"] = 9002.ToString();
             tables["ProductID"] = VersionConfig.Get().gameId;
             tables["Time"] = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-            tables["IP"] = DeviceUtility.GetIp();
+            tables["IP"] = DeviceUtility.GetCachedIp();
             tables["AccountID"] = "system";
             tables["Level"] = "1";
             tables["RoleID"] = "system";
@@ -88,7 +88,7 @@
     }
 
 
-    const string chatReportUrl = "http://xssgcenter.secondworld.net.cn:11000/center/eventreport.php?";
+    const string chatReportUrl = "http://gamecenter.secondworld.net.cn:11000/center/eventreport.php?";
     public void ChatReport(string content, string channelName, string toPlayer, int chatType)
     {
 #if !UNITY_EDITOR
@@ -101,7 +101,7 @@
         tables["RegionID"] = ServerListCenter.Instance.currentServer.region_flag.ToString();
         tables["EventID"] = 9003.ToString();
         tables["Time"] = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-        tables["IP"] = DeviceUtility.GetIp();
+        tables["IP"] = DeviceUtility.GetCachedIp();
         tables["ChatChannel"] = channelName;
         var sdkLoginResult = LoginManager.Instance.sdkLoginResult;
         tables["AccountID"] = sdkLoginResult == null ? LoginManager.Instance.accountBuf : sdkLoginResult.account;

--
Gitblit v1.8.0