AdiBags
AdiBags copied to clipboard
For Masque Users
Due to changes in Masque 11.2.6+, AdiBags will not function properly due to it using a deprecated function. Users can solved this by changing line 48 in AdiBags/modules/Masque.lua from:
self.BankGroup:SetCallback(self.OnMasqueGroupChange, self)
To:
self.BankGroup:RegisterCallback(self.OnMasqueGroupChange, self)
Or more simply put: Change SetCallback to RegisterCallback.