guodong 1 gadu atpakaļ
vecāks
revīzija
5b6e49a1e8

+ 5 - 4
GameClient/Assets/Game/HotUpdate/GameConfig.cs

@@ -22,7 +22,8 @@ namespace GFGGame
         public static int showGM;
         //开服时间
         public static long openTime = 0;
-        public static int tiShen;
+        public static int tsStatus;
+        public static int tsServer;
 
         public static void InitData(string json)
         {
@@ -36,9 +37,9 @@ namespace GFGGame
             {
                 openTime = TimeUtil.GetTimestamp(result.openTime);
             }
-            if(!string.IsNullOrEmpty(result.tiShen))
+            if(!string.IsNullOrEmpty(result.tsStatus))
             {
-                tiShen = int.Parse(result.tiShen);
+                tsStatus = int.Parse(result.tsStatus);
             }
             GameConfig.logApiReportUrl = LauncherConfig.logApiRootUrl + "ReportGet";
         }
@@ -48,7 +49,7 @@ namespace GFGGame
             public string loginApiUrl;
             public string showGM;
             public string openTime;
-            public string tiShen;
+            public string tsStatus;
         }
     }
 }

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Views/MainUI/MainUIView.cs

@@ -1056,7 +1056,7 @@ namespace GFGGame
         }
         private void CheckAutoShowViews()
         {
-            if (GameConfig.tiShen > 0) return; //提审服不显示弹窗
+            if (GameConfig.tsStatus > 0) return; //提审服不显示弹窗
             if (RoleDataManager.lvl < 10) return;
             if (GuideDataManager.currentGuideId > 0) return;
             if (GameGlobal.AutoShowCompleted) return;

+ 1 - 1
GameClient/Assets/Game/Launcher/LauncherConfig.cs

@@ -28,7 +28,7 @@ namespace GFGGame
         public static string logApiRootUrl;//上报普通日志接口
         public static string logApiReportLauncherUrl;//上报节点日志接口
         public static string apkVersion;
-        //0 正常,1 维护中,2 提审中
+        //0 正常,1 维护中
         public static int serverStatus;
         //0 关闭所有log界面,1 开启后台log界面, 2 开启弹窗log界面
         public static int onDebug;