From a4ba03dbff7baa51eefd6b8eb771c26d0b04a96b Mon Sep 17 00:00:00 2001 From: Antonio Lobato Date: Tue, 17 Jan 2023 16:55:45 -0800 Subject: [PATCH] Fixed a bug in Wrath to work around Blizzard not sending the BAG_UPDATE_DELAYED event randomly when taking item actions. (#911) --- core/Core.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/Core.lua b/core/Core.lua index 95c7dcb..b8c6d43 100644 --- a/core/Core.lua +++ b/core/Core.lua @@ -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)