diff --git a/core.lua b/core.lua index 7dda1cc..6c2d754 100644 --- a/core.lua +++ b/core.lua @@ -1,4 +1,4 @@ -AuxVersion = '2.2.10' +AuxVersion = '2.2.11' AuxAuthors = 'shirsig; Zerf; Zirco (Auctionator); Nimeral (Auctionator backport)' local lastRightClickAction = GetTime() @@ -49,7 +49,7 @@ function Aux_OnLoad() if count == 1 then EnhTooltip.AddLine('Market Value: '..Aux.util.money_string(market_value), nil, true) else - EnhTooltip.AddLine('Market Value: '..Aux.util.money_string(market_value * count)..' ('..Aux.util.money_string(market_value)..' ea.)', nil, true) + EnhTooltip.AddLine('Market Value: '..Aux.util.money_string(market_value * count)..' / '..Aux.util.money_string(market_value), nil, true) end EnhTooltip.LineColor(0.1,0.8,0.5) diff --git a/slash.lua b/slash.lua index 1eedce8..d859d9e 100644 --- a/slash.lua +++ b/slash.lua @@ -5,9 +5,9 @@ function SlashCmdList.AUX(parameter) elseif parameter == 'clear snapshot' then Aux.persistence.load_dataset().snapshot = {} Aux.log('Snapshot cleared.') - elseif parameter == 'clear average' then + elseif parameter == 'clear history' then Aux.persistence.load_dataset().stat_average_data = {} - Aux.log('Average data cleared.') + Aux.log('History cleared.') elseif parameter == 'clear histogram' then Aux.persistence.load_dataset().stat_histogram_data = {} Aux.log('Histogram data cleared.')