From 297d71d2ff43ea3a41324a12f47665d2ceac29d5 Mon Sep 17 00:00:00 2001 From: zhangqiang <657634622@qq.com> Date: Fri, 9 Oct 2020 15:18:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=BF=E4=B8=8A=E9=97=AE=E9=A2=98=20?= =?UTF-8?q?=E6=97=A0=E5=B0=BD=E5=89=AF=E6=9C=AC=E8=BD=AE=E6=8D=A2=E5=89=8D?= =?UTF-8?q?5=E5=88=86=E9=92=9F=E6=97=A0=E6=B3=95=E8=BF=9B=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Carbon/CarbonTypePanelV2.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua index ed320fc3b4..c6d419bd87 100644 --- a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua +++ b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua @@ -419,9 +419,13 @@ function this.BtnClick(id) PopupTipPanel.ShowTip(string.format(Language[12297],config.OpenRules[2])) end elseif id == FUNCTION_OPEN_TYPE.ENDLESS then - MapManager.curCarbonType = CarBonTypeId.ENDLESS - MapManager.SetViewSize(3)--设置视野范围(明雷形式) - UIManager.OpenPanel(UIName.EndLessCarbonPanel) + if ActTimeCtrlManager.IsQualifiled(id) then + MapManager.curCarbonType = CarBonTypeId.ENDLESS + MapManager.SetViewSize(3)--设置视野范围(明雷形式) + UIManager.OpenPanel(UIName.EndLessCarbonPanel) + else + PopupTipPanel.ShowTip("无尽副本轮换前5分钟无法进入") + end end end