diff --git a/lua/app/module/battle/controller/battle_controller.lua b/lua/app/module/battle/controller/battle_controller.lua index 9157e7bd..a4082ef4 100644 --- a/lua/app/module/battle/controller/battle_controller.lua +++ b/lua/app/module/battle/controller/battle_controller.lua @@ -454,6 +454,7 @@ function BattleController:enterAtkStepOver() if self.waveIndex >= self.maxWaveIndex then self:enterRoundEnd() else + self.defTeam:removeAllBuff() self:onDefDead() self:enterRefreshBoard() end @@ -491,6 +492,7 @@ function BattleController:enterDefStepOver() if self.waveIndex >= self.maxWaveIndex then self:enterRoundEnd() else + self.defTeam:removeAllBuff() self:onDefDead() self:enterRefreshBoard() end