Skip to content

Commit

Permalink
Fixed ItemCount for bank.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shestak committed Oct 26, 2014
1 parent 294cf09 commit 938e574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShestakUI/Modules/Tooltip/ItemCount.lua
Expand Up @@ -8,7 +8,7 @@ GameTooltip:HookScript("OnTooltipCleared", function(self) self.UIItemTooltip = n
GameTooltip:HookScript("OnTooltipSetItem", function(self)
if UIItemTooltip and not self.UIItemTooltip and UIItemTooltip.count then
local item, link = self:GetItem()
local num = GetItemCount(link)
local num = GetItemCount(link, true)
local item_count = ""

if UIItemTooltip.count and num > 1 then
Expand Down

0 comments on commit 938e574

Please sign in to comment.