From 5c3cfa00edd0ff1177f40211511172277a43db59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tekkub=20=3Abear=3A=E2=80=82?= Date: Tue, 28 Jun 2011 19:01:06 -0600 Subject: [PATCH] I love when they change returns like this. Who uses the hex color without the "|c"? NOONE THAT'S WHO Fixes #28 --- GnomishVendorShrinker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GnomishVendorShrinker.lua b/GnomishVendorShrinker.lua index a78cf66..125fa18 100644 --- a/GnomishVendorShrinker.lua +++ b/GnomishVendorShrinker.lua @@ -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()