【战斗】=======战斗回合数显示修改

dev_chengFeng
wangzhenxing 2021-02-19 17:04:56 +09:00
parent ba4cc03dc1
commit ef40c02a3e
1 changed files with 3 additions and 0 deletions

View File

@ -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