ソースを参照

调试获取配置信息接口

cyzhao 1 年間 前
コミット
10bdd76300

+ 1 - 1
Gameserver/App/Services/AppServer.php

@@ -150,7 +150,7 @@ class AppServer {
             return ErrCode::clientversionlow_err;
         }
 
-        $limit_Ver = "1.1.8";                                                  # 限制客户端最低版本
+        $limit_Ver = "1.1.11";                                                  # 限制客户端最低版本
         $clientArr = CommUtil::split(req()->CV, ".");
         $serverArr = CommUtil::split($limit_Ver, ".");
         $client = $clientArr[0] * 1000 * 1000 + $clientArr[1] * 1000 + $clientArr[2];

+ 1 - 1
Gameserver/App/base/Req.php

@@ -89,7 +89,7 @@ class Req extends Object_ext {
             $this->CV = "999.999.999";
         }
         if ($this->CV == "unity") {
-            $this->CV = "1.1.8";
+            $this->CV = "1.1.11";
         }
         self::$_req = $this;                                                    // ---赋值---
         switch ($this->cmd) {

+ 1 - 1
Gameserver/App/config.php

@@ -22,7 +22,7 @@ abstract class config {
      * @return type
      */
     public static function CDN_host() {
-        return "https://loyalsoft.oss-cn-shanghai.aliyuncs.com" . "/jzhj/" . PLAT;
+        return "https://loyalsoft.oss-cn-shanghai.aliyuncs.com" . "/jzhj2023/" . PLAT;
     }
 
     /**