Back to Home

ESO Lua File v101041

ingame/chapterupgrade/chapterupgradeutils.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
-- Ingame
function ZO_ShowChapterUpgradePlatformScreen(marketOpenSource, chapterUpgradeId)
    chapterUpgradeId = chapterUpgradeId or GetCurrentChapterUpgradeId()
    if IsInGamepadPreferredMode() then
        ZO_CHAPTER_UPGRADE_GAMEPAD:RequestShowChapterUpgrade(chapterUpgradeId)
    else
        RequestShowMarketChapterUpgrade(marketOpenSource, chapterUpgradeId)
    end
end