diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua b/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua index 37a950b447..c7ac53b309 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua @@ -597,6 +597,9 @@ function this.OnRoundChanged(round) --显示波次 local curRound, maxRound = BattleLogic.GetCurRound() curRound = curRound <= 0 and 1 or curRound -- 最小显示第一回合 + if curRound>maxRound then + curRound=maxRound + end this.roundText.text = string.format(Language[10252], curRound, maxRound) end