From 21e57c90cd39cae29bb00c5170ff6e473dce1b45 Mon Sep 17 00:00:00 2001 From: RDW Date: Tue, 1 Aug 2023 10:03:45 +0200 Subject: [PATCH] UI: Added Evoker to the list of recognized classes The "disable for classes" option couldn't be set for Evokers previously. --- Locales.lua | 1 + Modules/Options/Options.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/Locales.lua b/Locales.lua index e62b39e8..344c7666 100644 --- a/Locales.lua +++ b/Locales.lua @@ -796,6 +796,7 @@ L["Announcements will only be triggered when the item is found. When this is off true L["Death Knight"] = true L["Demon Hunter"] = true +L["Evoker"] = true L["Druid"] = true L["Hunter"] = true L["Mage"] = true diff --git a/Modules/Options/Options.lua b/Modules/Options/Options.lua index b9136633..678c3d91 100644 --- a/Modules/Options/Options.lua +++ b/Modules/Options/Options.lua @@ -71,6 +71,7 @@ local classes = { ["SHAMAN"] = "|c" .. RAID_CLASS_COLORS["SHAMAN"]["colorStr"] .. L["Shaman"] .. "|r", ["WARLOCK"] = "|c" .. RAID_CLASS_COLORS["WARLOCK"]["colorStr"] .. L["Warlock"] .. "|r", ["WARRIOR"] = "|c" .. RAID_CLASS_COLORS["WARRIOR"]["colorStr"] .. L["Warrior"] .. "|r", + ["EVOKER"] = "|c" .. RAID_CLASS_COLORS["EVOKER"]["colorStr"] .. L["Evoker"] .. "|r", } local red = Rarity.Enum.Colors.Red