This commit is contained in:
aozhiwei 2022-09-19 19:45:57 +08:00
parent 0ded0384af
commit a3fe93b04c

View File

@ -116,7 +116,7 @@ class BattleDataService extends BaseService {
} }
} }
switch ($matchMode) { switch ($matchMode) {
case 0: case self::MATCH_MODE_PVP:
{ {
//匹配赛模式 //匹配赛模式
$this->updatePvpData(); $this->updatePvpData();
@ -125,12 +125,12 @@ class BattleDataService extends BaseService {
$this->_incDailyV(TN_DAILY_PVP_BATTLE_TIMES, 1); $this->_incDailyV(TN_DAILY_PVP_BATTLE_TIMES, 1);
} }
break; break;
case 1: case self::MATCH_MODE_MATCH:
{ {
//排位赛 //排位赛
} }
break; break;
case 2: case self::MATCH_MODE_PVE:
{ {
//pve //pve
$this>updatePveData(); $this>updatePveData();