Guild Bank Split Stack
JimGiordano2 opened this issue ยท 0 comments
Latest release does not have fix for GuildBank error when right click on stack to pick up a specific amount.
Previously posted fix still works, just surprised it didn't make into the new version.
per #757
to fix:
In Bagnon_GuildBank\components\Item.lua line 40.
Change
if IsModifiedClick('SPLITSTACK') then
if not self:GetInfo().locked then
self.SplitStack = ItemSlot.SplitStack -- have no idea why is necessary
OpenStackSplitFrame(select(2, self:GetInfo()), self, 'BOTTOMLEFT', 'TOPLEFT')
to
if IsModifiedClick('SPLITSTACK') then
if not self.IsLocked then
self.SplitStack = ItemSlot.SplitStack -- have no idea why is necessary
StackSplitFrame:OpenStackSplitFrame(self.count, self, 'BOTTOMLEFT', 'TOPLEFT',1)