Bagnon

Bagnon

132M Downloads

Viewing Alt's Bags Bugged when Keystone in Bags

BrandonFreeck opened this issue ยท 1 comments

commented

Is there an existing issue for this?

  • I have searched the existing open and closed issues.

Description

When a character has a keystone in their bags, you cannot view their inventory from other characters. Deselecting the single bag with the keystone in it allows you to view the other bags. I was able to test/confirm this by moving the keystone to different bags on my alt and then

Bagnon Version

11.1.23

World of Warcraft Flavor

Retail

World of Warcraft Region

US/NA

Tested with only Bagnon

I got this issue with only Bagnon enabled

Lua Error


Reproduction Steps

I was able to test/confirm this by moving the keystone to different bags on my alt and then swapping and checking to see which bag was bugged.

Last Working Version

No response

Screenshots

https://imgur.com/a/Gy76NYc

commented

Replace Frame:GetItemInfo Function in .../AddOns/BagBrother/core/classes/frameBase.lua Line 180

Replace

item.hyperlink = format('|c%s|Hbattlepet:%sx0|h[%s]|h|r', select(4, GetItemQualityColor(item.quality)), data, item.name)

with

local color = select(4, GetItemQualityColor(item.quality or 1)) or 'ffffffff'
item.name = tostring(item.name or "Unknown")
item.hyperlink = format('|c%s|Hbattlepet:%sx0|h[%s]|h|r', color, data, item.name)