arkayenro / arkinventory

A World of Warcraft Inventory mod for Retail, Burning Crusade, and Classic
108 stars 14 forks source link

[BUG] Classic Era - Bank shows up with Arkinventory on #1814

Open Jorvanus opened 1 year ago

Jorvanus commented 1 year ago

With Arkinventory one (and nothing else) the bank window shows up with the Arkinventory window also.

Jorvanus commented 1 year ago

image

arkayenro commented 1 year ago

looks like they backported the PlayerInteractionFrameManager to classic

will be in the next release

manual fix is to change WRATH to CLASSIC on line 11633 of core\ArkInventory.lua

        -- bank functions (now opens via the ui panels in all versions)
        if ArkInventory.ClientCheck( ArkInventory.ENUM.EXPANSION.CLASSIC ) then
            ArkInventory:RawHook( PlayerInteractionFrameManager, "ShowFrame", ArkInventory.HookPlayerInteractionShow, true )
            ArkInventory:RawHook( PlayerInteractionFrameManager, "HideFrame", ArkInventory.HookPlayerInteractionHide, true )
        end