From 26d31fc6a82b2115cf4219cfb0b2be60219a456a Mon Sep 17 00:00:00 2001 From: Taidtuskecyh Date: Wed, 19 May 2021 23:16:25 +0200 Subject: [PATCH] fixed shaman / paladin class color --- Core.lua | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Core.lua b/Core.lua index e5e4bd55..49a67f69 100644 --- a/Core.lua +++ b/Core.lua @@ -31,18 +31,19 @@ for class,friendlyClass in pairs(API_CLASSES) do -- There appears to be no WoW API that lists out specific classes to a single faction -- Nor is there an API that identifies a specific class to a specific faction. -- I'd love to not hard code this though, but I seem to be out of luck. - - if core.faction == "Horde" then - if class ~= "PALADIN" then - addColor = true; - end - end - - if core.faction == "Alliance" then - if class ~= "SHAMAN" then - addColor = true; - end - end + + -- if core.faction == "Horde" then + -- if class ~= "PALADIN" then + -- addColor = true; + -- end + -- end + + -- if core.faction == "Alliance" then + -- if class ~= "SHAMAN" then + -- addColor = true; + -- end + -- end + addColor = true; if addColor then colorTable.class = friendlyClass;