AdiBags icon indicating copy to clipboard operation
AdiBags copied to clipboard

For Masque Users

Open StormFX opened this issue 1 month ago • 0 comments

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.

StormFX avatar Nov 22 '25 02:11 StormFX