|
@@ -77,7 +77,7 @@ class RankProc {
|
|
|
if ($_power < $rewardCondition) { # 不满足领取条件
|
|
|
return Resp::err(ErrCode::rank_fpower_unlocked);
|
|
|
}
|
|
|
- if (in_array($rewardCondition, $req->userInfo->game->privateState->RankFpowerRewardRec)) {
|
|
|
+ if (in_array($rewardCondition, $req->userInfo->game->privateState->RankFpowerRewardRec)) { # 检查是否已经领取过了
|
|
|
return Resp::err(ErrCode::rank_reward_hasgetted);
|
|
|
}
|
|
|
|