From 676e8355bc2f9ee53b71e1ec1cbea1f7e003bff6 Mon Sep 17 00:00:00 2001 From: Manuel Simon Hirsig Date: Wed, 4 Jan 2017 16:31:13 +0100 Subject: [PATCH] tooltip label change --- core/tooltip.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/tooltip.lua b/core/tooltip.lua index 9aa1dae..4e2b50f 100644 --- a/core/tooltip.lua +++ b/core/tooltip.lua @@ -82,7 +82,7 @@ function extend_tooltip(tooltip, link, quantity) end if aux_tooltip_disenchant_value then local disenchant_value = disenchant.value(item_info.slot, item_info.quality, item_info.level) - tooltip:AddLine('Disenchant Value: ' .. (disenchant_value and money.to_string2(disenchant_value) or UNKNOWN), color.tooltip.disenchant.value()) + tooltip:AddLine('Disenchant: ' .. (disenchant_value and money.to_string2(disenchant_value) or UNKNOWN), color.tooltip.disenchant.value()) end end end @@ -95,7 +95,7 @@ function extend_tooltip(tooltip, link, quantity) if aux_tooltip_merchant_sell then local price = cache.merchant_info(item_id) if price ~= 0 then - tooltip:AddLine((aux_tooltip_merchant_buy and 'Vendor Sell: ' or 'Vendor: ') .. (price and money.to_string2(price * quantity) or UNKNOWN), color.tooltip.merchant()) + tooltip:AddLine('Vendor: ' .. (price and money.to_string2(price * quantity) or UNKNOWN), color.tooltip.merchant()) end end local auctionable = not item_info or info.auctionable(temp-info.tooltip('link', item_info.itemstring), item_info.quality)