This commit is contained in:
aozhiwei 2022-09-19 11:58:36 +08:00
parent 787c5eee5d
commit 3667a883dc

View File

@ -105,6 +105,7 @@ class BattleDataService extends BaseService {
$this->updatePvpData(); $this->updatePvpData();
$this->rewardCegPvp(); $this->rewardCegPvp();
$this->rewardFragmentPvp(); $this->rewardFragmentPvp();
$this->_incDailyV(TN_DAILY_PVP_BATTLE_TIMES, 1);
} }
break; break;
case 1: case 1:
@ -120,6 +121,7 @@ class BattleDataService extends BaseService {
$this->pveGeminiMetaMode) { $this->pveGeminiMetaMode) {
$this->rewardCegPve(); $this->rewardCegPve();
$this->rewardFragmentPve(); $this->rewardFragmentPve();
$this->_incDailyV(TN_DAILY_PVE_BATTLE_TIMES, 1);
} }
} }
break; break;
@ -514,7 +516,6 @@ class BattleDataService extends BaseService {
$todayPveGetFragmentNum = $this->_getDailyV(TN_DAILY_PVE_GET_FRAGMENT_NUM, 0); $todayPveGetFragmentNum = $this->_getDailyV(TN_DAILY_PVE_GET_FRAGMENT_NUM, 0);
$todayPvpGetFragmentNum = $this->_getDailyV(TN_DAILY_PVP_GET_FRAGMENT_NUM, 0); $todayPvpGetFragmentNum = $this->_getDailyV(TN_DAILY_PVP_GET_FRAGMENT_NUM, 0);
$this->_incDailyV(TN_DAILY_PVE_BATTLE_TIMES, 1);
if ($todayPveGetFragmentNum + $todayPvpGetFragmentNum > 2) { if ($todayPveGetFragmentNum + $todayPvpGetFragmentNum > 2) {
return; return;
} }