From 7dcec9613ec3124b24d38d61090e42285980ad01 Mon Sep 17 00:00:00 2001 From: tekkub Date: Tue, 18 Aug 2009 00:00:25 -0600 Subject: [PATCH] Fix copper color Closes #1 --- GnomishVendorShrinker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GnomishVendorShrinker.lua b/GnomishVendorShrinker.lua index 9c7c249..365ac4b 100644 --- a/GnomishVendorShrinker.lua +++ b/GnomishVendorShrinker.lua @@ -69,7 +69,7 @@ local function GSC(cash) elseif g > 0 then return string.format(" |cffffd700%d.|cffc7c7cf%02d.|cffeda55f%02d", g, s, c) elseif s > 0 and c == 0 then return string.format(" |cffc7c7cf%d", s) elseif s > 0 then return string.format(" |cffc7c7cf%d.|cffeda55f%02d", s, c) - else return string.format(" |cffc7c7cf%d", c) end + else return string.format(" |cffeda55f%02d", c) end end