xiyou_sanguo
parent
5edb5d7714
commit
31c1796f2e
|
|
@ -4205,7 +4205,7 @@ function this.GetSoulPrintLoopUIMaxData(_heroData)
|
|||
table.insert(_d, v.SlotPosition)
|
||||
end
|
||||
elseif v.OpenRules[1] == 3 then
|
||||
if BecomeAGodManager.GetBecomeAGodLevel() >= v.OpenRules[2] then
|
||||
if BecomeAGodManager.playerGodLevel >= v.OpenRules[2] then
|
||||
table.insert(_d, v.SlotPosition)
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -310,6 +310,10 @@ function this.GetSoulLockTip()
|
|||
end
|
||||
return string.format(Language[12453], str)
|
||||
end
|
||||
elseif v.OpenRules[1] == 3 then
|
||||
if BecomeAGodManager.playerGodLevel < v.OpenRules[2] then
|
||||
return "主角成神达到神王解锁"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -501,6 +505,10 @@ function this.GetPos()
|
|||
if curHeroData.star >= v.OpenRules[2] then
|
||||
table.insert(_d, v.SlotPosition)
|
||||
end
|
||||
elseif v.OpenRules[1] == 3 then
|
||||
if BecomeAGodManager.playerGodLevel >= v.OpenRules[2] then
|
||||
table.insert(_d, v.SlotPosition)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue