Skip to content

Commit

Permalink
Fix MoveToSpecialtyBags Not Accounting for Retail Reagent Bag
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Jul 2, 2024
1 parent 2b9a1ff commit 223829e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Baggins-ItemOps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,15 @@ function Baggins:MoveToSpecialtyBags(bank,testonly)
self:ScheduleTimer("MoveToSpecialtyBags", 0.1, bank)
return
end
if bag ~= 5 and C_Container.GetContainerNumFreeSlots(5) > 0 and select(17, GetItemInfo(link)) then
if testonly then return true end
compressLoopProtect = compressLoopProtect - 1
if compressLoopProtect < 0 then return end
PickupContainerItem(bag,slot)
PickupContainerItem(floor(dest/1000),dest%1000)
self:ScheduleTimer("MoveToSpecialtyBags", 0.1, bank)
return
end
end

if Baggins:IsClassicWow() or Baggins:IsTBCWow() or Baggins:IsWrathWow() or Baggins:IsCataWow() then
Expand Down

0 comments on commit 223829e

Please sign in to comment.