diff --git a/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua b/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua index ab46ab0f..a691f6e1 100644 --- a/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua +++ b/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua @@ -388,7 +388,6 @@ end function BattleControllerDungeonRune:controllBattleEnd() self.combatReport = { battleType = GConst.BattleConst.BATTLE_TYPE.DUNGEON_RUNE, - wave = self:getWaveIndex(), victory = self.victory, } local atkReport = {} @@ -402,9 +401,6 @@ function BattleControllerDungeonRune:controllBattleEnd() table.insert(atkReport, report) end self.combatReport.atkReport = atkReport - if not self.victory then - self.combatReport.wave = self.combatReport.wave - 1 - end BIReport:postFightHeroReport(self.combatReport.battleType, atkReport) ModuleManager.DungeonRuneManager:reqFightSettlement(self.chapterId, self.combatReport, self.taskProgress, self.dungeonRuneRemainRoundCount) end