This commit is contained in:
Manuel Simon Hirsig
2016-03-21 00:36:32 +01:00
parent 426640677c
commit f1db874338
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
Aux = {
version = '2.8.4',
version = '2.8.5',
blizzard_ui_shown = false,
orig = {},
}
+1 -1
View File
@@ -99,7 +99,7 @@ function private.extend_tooltip(tooltip, hyperlink, quantity)
local price = Aux.merchant.info(item_id)
if price ~= 0 then
tooltip:AddLine('Vendor Sell: '..Aux.util.format_money(price), color.r, color.g, color.b)
tooltip:AddLine('Vendor Sell: '..(price and Aux.util.format_money(price) or GRAY_FONT_COLOR_CODE..'---'..FONT_COLOR_CODE_CLOSE), color.r, color.g, color.b)
end
end