【鸿蒙阵成就】

dev_chengFeng
guowei 2021-01-05 10:46:35 +08:00
parent 94f549f605
commit 4d951b38bd
2 changed files with 8 additions and 1 deletions

View File

@ -937,6 +937,7 @@ JumpType = {
Pokemon = 79,--灵兽山
HongMengZhen = 86,-- 鸿蒙阵
BuyVigor = 10000, --体力购买
BuyGold = 10001, --金币购买
Privilege = 10003, -- 特权

View File

@ -556,7 +556,13 @@ local jumpDic = {
end,
[JumpType.HongMengZhen] = function ()
-- body
UIManager.OpenPanel(UIName.HongMengPanel)
if HarmonyManager.hongmengAdditions[1].heroTid == 0 then
-- body
UIManager.OpenPanel(UIName.HongMengEnvoyPanel)
else
UIManager.OpenPanel(UIName.HongMengPanel)
end
end
}