神魂提交
parent
6f0d51ddb2
commit
b11e859557
|
@ -88,7 +88,7 @@ function GeneralBigPopup_RoleGodSoulUp:BindEvent()
|
||||||
PopupTipPanel.ShowTip("请选择神将!")
|
PopupTipPanel.ShowTip("请选择神将!")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
if self:CheckEmptyList() then
|
if self:CheckHaveEmptyValue() then
|
||||||
PopupTipPanel.ShowTip("所选神将无法激活神魂效果!")
|
PopupTipPanel.ShowTip("所选神将无法激活神魂效果!")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
@ -143,7 +143,7 @@ end
|
||||||
|
|
||||||
function GeneralBigPopup_RoleGodSoulUp:CheckEmptyList()
|
function GeneralBigPopup_RoleGodSoulUp:CheckEmptyList()
|
||||||
for k,v in pairs(self.choosedIdList) do
|
for k,v in pairs(self.choosedIdList) do
|
||||||
if v or v ~= "" then
|
if v and v ~= "" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue