Skip to content

Commit

Permalink
prevent repeated scanning and errors when a tackle box is present
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexFolland committed Jul 29, 2024
1 parent 984a15e commit c717093
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AutoGear.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3525,7 +3525,8 @@ function AutoGearReadItemInfo(inventoryID, lootRollID, container, slot, questRew
and (
string.find(text, " bag") or
string.find(text, " quiver") or
string.find(text, " ammo pouch")
string.find(text, " ammo pouch") or
string.find(text, " tackle box")
) then
info.numBagSlots = (info.numBagSlots or 0) + value
end
Expand Down

0 comments on commit c717093

Please sign in to comment.