From b11e859557f3768c9246b468134f1a536435d4ca Mon Sep 17 00:00:00 2001 From: jiaoyangna <3046463818@qq.com> Date: Wed, 3 Nov 2021 18:16:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A5=9E=E9=AD=82=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GeneralPanel/View/GeneralBigPopup_RoleGodSoulUp.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View/GeneralBigPopup_RoleGodSoulUp.lua b/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View/GeneralBigPopup_RoleGodSoulUp.lua index 83ec020e02..fc3c7273ec 100644 --- a/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View/GeneralBigPopup_RoleGodSoulUp.lua +++ b/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View/GeneralBigPopup_RoleGodSoulUp.lua @@ -88,7 +88,7 @@ function GeneralBigPopup_RoleGodSoulUp:BindEvent() PopupTipPanel.ShowTip("请选择神将!") return end - if self:CheckEmptyList() then + if self:CheckHaveEmptyValue() then PopupTipPanel.ShowTip("所选神将无法激活神魂效果!") return end @@ -143,7 +143,7 @@ end function GeneralBigPopup_RoleGodSoulUp:CheckEmptyList() for k,v in pairs(self.choosedIdList) do - if v or v ~= "" then + if v and v ~= "" then return false end end