From e97ab8fa84a8984f13bad94f00d2b016ed183943 Mon Sep 17 00:00:00 2001 From: gaoxin Date: Fri, 11 Mar 2022 17:34:15 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=B7=B3=E8=BD=AC=E3=80=91=E9=94=BB?= =?UTF-8?q?=E5=99=A8=E9=98=81=E9=A1=B5=E7=AD=BE=E9=A1=BA=E5=BA=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=AF=BC=E8=87=B4=E5=88=A4=E6=96=AD=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Player/JumpManager.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Player/JumpManager.lua b/Assets/ManagedResources/~Lua/Modules/Player/JumpManager.lua index 6ba4d79141..6fad48780f 100644 --- a/Assets/ManagedResources/~Lua/Modules/Player/JumpManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Player/JumpManager.lua @@ -495,18 +495,18 @@ local jumpDic = { if data then index = data[2] end local ConfigData = ConfigManager.GetConfig(ConfigName.SpecialConfig) if index == 2 then - local string = ConfigData[40].Value - local num = string.split(string.split(string,"|")[1],"#")[2] - if PlayerManager.level < tonumber(num) then - PopupTipPanel.ShowTip(string.format(Language[10770],num)) + local string = ConfigData[89].Value + if PlayerManager.level < tonumber(string) then + PopupTipPanel.ShowTip(string.format(Language[10770],string)) this.isOpen = false return end end if index == 3 then - local string = ConfigData[89].Value - if PlayerManager.level < tonumber(string) then - PopupTipPanel.ShowTip(string.format(Language[10770],string)) + local string = ConfigData[40].Value + local num = string.split(string.split(string,"|")[1],"#")[2] + if PlayerManager.level < tonumber(num) then + PopupTipPanel.ShowTip(string.format(Language[10770],num)) this.isOpen = false return end