1
0
Fork 0

Change max valor points to 1000

This commit is contained in:
Andrew Tomaka 2011-12-03 04:26:10 -05:00
parent 0fefdb710d
commit 0b3278e883
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ local Z = LibStub('LibBabble-Zone-3.0'):GetLookupTable()
--
local CURRENT_MAX_LEVEL = 85
local MAX_VALOR_POINTS = 1000
local defaults = {
global = {},
@ -557,7 +558,7 @@ function core:DrawTooltip()
self.tooltip:SetCell(characterLine, 1, information.name, self.fontObjects[information.class], 'LEFT')
local valorPointColor
if information.valorPoints == 980 then
if information.valorPoints == MAX_VALOR_POINTS then
valorPointColor = self.fontObjects['red']
else
valorPointColor = self.fontObjects['green']