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:
parent
f5b9f7ef8e
commit
5c3cfa00ed
|
@ -249,7 +249,7 @@ local grads = setmetatable({
|
||||||
}, {__index = function(t,i) t[i] = default_grad return default_grad end})
|
}, {__index = function(t,i) t[i] = default_grad return default_grad end})
|
||||||
local _, _, _, _, _, _, RECIPE = GetAuctionItemClasses()
|
local _, _, _, _, _, _, RECIPE = GetAuctionItemClasses()
|
||||||
local quality_colors = setmetatable({}, {__index = function() return "|cffffffff" end})
|
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 offset = 0
|
||||||
local searchstring
|
local searchstring
|
||||||
local function Refresh()
|
local function Refresh()
|
||||||
|
|
Loading…
Reference in New Issue