From 3845e974e42a03796650bd03f7bd2da033e1feb7 Mon Sep 17 00:00:00 2001 From: shagu Date: Wed, 24 Jun 2020 10:52:04 +0200 Subject: [PATCH] thirdparty: fix wim class color strings --- modules/thirdparty-vanilla.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/thirdparty-vanilla.lua b/modules/thirdparty-vanilla.lua index e6e5bf03..dcf44380 100644 --- a/modules/thirdparty-vanilla.lua +++ b/modules/thirdparty-vanilla.lua @@ -458,7 +458,7 @@ pfUI:RegisterModule("thirdparty-vanilla", "vanilla", function() for class in pairs(RAID_CLASS_COLORS) do local wimclass = _G[format("WIM_LOCALIZED_%s",class)] local colorstr = rgbhex(RAID_CLASS_COLORS[class].r, RAID_CLASS_COLORS[class].g, RAID_CLASS_COLORS[class].b, RAID_CLASS_COLORS[class].a) - _G.WIM_ClassColors[wimclass] = gsub(colorstr, "^ff", "") + _G.WIM_ClassColors[wimclass] = gsub(colorstr, "^|cff", "") end end, true)