From 65db6438677ce7104cc8a26abdea322e48c0545c Mon Sep 17 00:00:00 2001 From: chenxi Date: Tue, 25 Apr 2023 21:30:36 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=B2=E5=AE=88=E6=96=B9buff=E6=B6=88?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/battle/controller/battle_controller.lua | 2 ++ 1 file changed, 2 insertions(+) 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