Browse Source

fixed: 使用任务卡时也进行追踪更新

王刚 3 năm trước cách đây
mục cha
commit
0e0d6d8874
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      Gameserver/Amfphp/process/StoreProc.php

+ 3 - 1
Gameserver/Amfphp/process/StoreProc.php

@@ -339,7 +339,9 @@ class StoreProc {
                 break;
         }
         UserProc::updateUserInfo();
-        return Resp::ok(array('store' => req()->userInfo->game->store));
+        return Resp::ok(array(
+                    'priv' => req()->userInfo->game->privateState,
+                    'store' => req()->userInfo->game->store));
 
 //        Err(ErrCode::msg_method_obsoleted, "代码需更新");
     }