minor changes

This commit is contained in:
Manuel Simon Hirsig
2016-01-18 18:12:30 +01:00
parent 78fd95f333
commit ba96d13d7c
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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)
+2 -2
View File
@@ -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.')