From e9bfed6ab6d503b99945fa760c1fbf6a93a1d007 Mon Sep 17 00:00:00 2001 From: jiaoyangna <3046463818@qq.com> Date: Thu, 6 Jan 2022 10:20:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=B0=E7=9A=84=E8=A7=84?= =?UTF-8?q?=E5=88=99=E6=B8=B8=E6=88=8F=E6=8A=A5=E9=94=99=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/GlobalActTimeCtrl/ActTimeCtrlManager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/GlobalActTimeCtrl/ActTimeCtrlManager.lua b/Assets/ManagedResources/~Lua/Modules/GlobalActTimeCtrl/ActTimeCtrlManager.lua index 3757112eb0..c70f958639 100644 --- a/Assets/ManagedResources/~Lua/Modules/GlobalActTimeCtrl/ActTimeCtrlManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/GlobalActTimeCtrl/ActTimeCtrlManager.lua @@ -252,7 +252,7 @@ function this.GetFuncTip(id) elseif rules[1] == 2 then tip = string.format(Language[10279], rules[2]) elseif rules[1] == 3 then - tip = string.format(Language[10771], rules[2]) + tip = string.format("鸿蒙阵共鸣神将等级达到%s开启", rules[2]) end else if not isActive then @@ -318,7 +318,7 @@ function this.IsQualifiled(id) elseif openRule[1] == 2 then -- 等级开启 qualifiled = playerLv >= openRule[2] elseif openRule[1] == 3 then -- 工坊等级开启 - qualifiled = WorkShopManager.WorkShopData.lv >= openRule[2] + qualifiled = true -- >= openRule[2] end return qualifiled end