Ver código fonte

防踢名称调整

zhangxiaobin 1 ano atrás
pai
commit
1d2687ea10
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      application/api/controller/Party.php

+ 2 - 2
application/api/controller/Party.php

@@ -1189,10 +1189,10 @@ class Party extends Common
         // 获取用户信息
         $userInfo = \app\common\model\User::field("noble,avatar,nickname,gender,level")->where(["id"=>$user_id])->find();
         if(!$userInfo) $this->error("用户信息获取失败!");
-        // 国王防踢。
+        // 贵族防踢。
         $nobleLevel = \app\common\model\NobleLevel::where(["id"=>$userInfo->noble])->find();
         if(($item == 3 || $item == 4) && $nobleLevel['fjft'] == 1) {
-            $this->error("对方已开通国王贵族,踢出房间失败!");
+            $this->error("对方已开通".$nobleLevel['name']."贵族,踢出房间失败!");
         }
 
         $redis = new Redis();