Skip to content

Commit

Permalink
Fixed a bug in Wrath to work around Blizzard not sending the BAG_UPDA…
Browse files Browse the repository at this point in the history
…TE_DELAYED event randomly when taking item actions. (#911)
  • Loading branch information
Cidan authored Jan 18, 2023
1 parent 9a07002 commit a4ba03d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,10 @@ end

function addon:BAG_UPDATE(event, bag)
updatedBags[bag] = true
if addon.isWrath then
self:SendMessage('AdiBags_BagUpdated', updatedBags)
wipe(updatedBags)
end
end

function addon:BAG_UPDATE_DELAYED(event)
Expand Down

0 comments on commit a4ba03d

Please sign in to comment.