I love when they change returns like this. Who uses the hex color without the "|c"? NOONE THAT'S WHO

Fixes #28
This commit is contained in:
tekkub :bear:  2011-06-28 19:01:06 -06:00
parent f5b9f7ef8e
commit 5c3cfa00ed
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ local grads = setmetatable({
}, {__index = function(t,i) t[i] = default_grad return default_grad end})
local _, _, _, _, _, _, RECIPE = GetAuctionItemClasses()
local quality_colors = setmetatable({}, {__index = function() return "|cffffffff" end})
for i=1,7 do quality_colors[i] = select(4, GetItemQualityColor(i)) end
for i=1,7 do quality_colors[i] = "|c".. select(4, GetItemQualityColor(i)) end
local offset = 0
local searchstring
local function Refresh()