Browse Source

返回排行榜内玩家的启灵信息

cyzhao 10 tháng trước cách đây
mục cha
commit
f204151fbf
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      Gameserver/App/process/FightProc.php

+ 3 - 1
Gameserver/App/process/FightProc.php

@@ -969,11 +969,13 @@ class FightProc {
 
         $store = $userInfo->store;
         $heros = $userInfo->heros;
-
+        $gates = $userInfo->gates;    
+        
         UserProc::updateUserInfo();
         $ret = array(
             'store' => $store,
             'heros' => $heros,
+            'gates' => $gates,
         );
         return Resp::ok($ret);
     }