From f01889db2196840c60ca9627767c7698cb96aa09 Mon Sep 17 00:00:00 2001 From: gaoxin Date: Wed, 24 Nov 2021 14:21:44 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=88=98=E6=96=97=E3=80=91=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E7=AC=AC=E4=B8=89=E5=9B=9E=E5=90=88=E6=97=B6=E6=88=98?= =?UTF-8?q?=E6=96=97=E5=B0=B1=E5=8F=AF=E4=BB=A5=E8=B7=B3=E8=BF=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Battle/View/BattlePanel.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua b/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua index 3d67d74fd4..0a7c2d63cb 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/View/BattlePanel.lua @@ -54,8 +54,8 @@ local UpdateBtnGMFunc = { -- if FightPointPassManager.GetCurOpenFightIdIsBoss() then -- return SKIP_STATE.NOUSE, "首领关卡无法跳过!" -- end - if this.curRound <= 3 then - return SKIP_STATE.NOUSE, "跳过功能将在第三回合后解锁" + if this.curRound < 3 then + return SKIP_STATE.NOUSE, "跳过功能将在第三回合解锁" end return SKIP_STATE.UNLOCK end, @@ -66,8 +66,8 @@ local UpdateBtnGMFunc = { -- if FightPointPassManager.GetCurOpenFightIdIsBoss() then -- return SKIP_STATE.NOUSE, "首领关卡无法跳过!" -- end - if this.curRound <= 3 then - return SKIP_STATE.NOUSE, "跳过功能将在第三回合后解锁" + if this.curRound < 3 then + return SKIP_STATE.NOUSE, "跳过功能将在第三回合解锁" end return SKIP_STATE.UNLOCK end,