xiyou_sanguo
zhangjiannan 2025-12-25 12:33:38 +08:00
parent 5edb5d7714
commit 31c1796f2e
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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