From f1b48a099de17628b5804b57a525e53b5d0b0eeb Mon Sep 17 00:00:00 2001 From: Fang Date: Mon, 9 Oct 2023 10:54:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=A6=E6=96=87=E5=89=AF=E6=9C=AC=E7=BB=93?= =?UTF-8?q?=E7=AE=97=E5=8E=BB=E6=8E=89=E6=B3=A2=E6=AC=A1=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../battle/controller/battle_controller_dungeon_rune.lua | 4 ---- 1 file changed, 4 deletions(-) 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