diff --git a/webapp/services/BattleDataService.php b/webapp/services/BattleDataService.php index c77ff402..5b97b399 100644 --- a/webapp/services/BattleDataService.php +++ b/webapp/services/BattleDataService.php @@ -546,6 +546,9 @@ class BattleDataService extends BaseService { private function rewardFragmentPve() { + if ($this->instanceRank < 1) { + return; + } $todayPveBattleTimes = myself()->_getDailyV(TN_DAILY_PVE_BATTLE_TIMES, 0); $todayPveLastGetFragmentBattle = myself()->_getDailyV(TN_DAILY_PVE_LAST_GET_FRAGMENT_BATTLE, 0); $todayPveGetFragmentNum = myself()->_getDailyV(TN_DAILY_PVE_GET_FRAGMENT_NUM, 0); @@ -649,6 +652,9 @@ class BattleDataService extends BaseService { private function rewardCegPve() { + if ($this->instanceRank < 1) { + return; + } $instanceLevel = $this->pveGeminiMeta['gemini_lv']; $bossReward = getReqVal('pve_kill_boss', 0) ? 1 : 0;