This commit is contained in:
aozhiwei 2022-09-22 14:47:38 +08:00
parent 2b9f57d139
commit 06ff5367a3

View File

@ -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;