Skip to content

Commit

Permalink
Fixed small bug in free slot counts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Nov 25, 2023
1 parent c3bb6b7 commit f18229a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frames/bag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ function bagProto:DrawSectionGridBag(dirtyItems)
end
end

self.freeBagSlotsButton:SetFreeSlots(freeSlotsData.bagid, freeSlotsData.slotid, freeSlotsData.count)
self.freeBagSlotsButton:SetFreeSlots(freeSlotsData.bagid, freeSlotsData.slotid, freeSlotsData.count, false)
self.freeReagentBagSlotsButton:SetFreeSlots(freeReagentSlotsData.bagid, freeReagentSlotsData.slotid, freeReagentSlotsData.count, true)

-- Loop through each section and draw it's size.
Expand Down

0 comments on commit f18229a

Please sign in to comment.