Skip to content

Commit

Permalink
Tweak crafting req count display
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkub committed Dec 27, 2014
1 parent 27666be commit 024914b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ButtonFactory.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ local function OnEvent(self)
if not self.id then return end
local count = GetItemCount(self.id, true)
if self.craftqty then
self.count:SetText(count .. "/".. self.craftqty)
self.count:SetText("*".. self.craftqty)
else
self.count:SetText(count > 0 and count or "")
end
Expand Down

0 comments on commit 024914b

Please sign in to comment.