Skip to content

Commit

Permalink
Merge pull request #8 from zdeyn/zdeyn-bugfix
Browse files Browse the repository at this point in the history
Fix misplaced brackets in SetBagItem function
  • Loading branch information
Ketho authored Jan 23, 2023
2 parents 39991ff + 560bd47 commit ad80ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VendorPrice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ local SetItem = {
count = info.stackCount
end
else
count = select(2, GetContainerItemInfo)(bag, slot)
count = select(2, GetContainerItemInfo(bag, slot))
end
if count then
VP:SetPrice(tt, true, "SetBagItem", count)
Expand Down

0 comments on commit ad80ce2

Please sign in to comment.