From 4a3867a2bc814aa041ed7adfdb136d8423e32321 Mon Sep 17 00:00:00 2001 From: Hector Zarate Date: Tue, 12 Aug 2025 11:16:46 -0500 Subject: [PATCH] Fix | Missing color option for Evoker Essence resource MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Evoker "Essence" resource had no color customization option. Added the missing config entry under: General → Colors → Power → Essence --- options/config.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/options/config.lua b/options/config.lua index 70e5a43a..8e3ca292 100755 --- a/options/config.lua +++ b/options/config.lua @@ -1235,6 +1235,14 @@ local function loadGeneralOptions() arg = "powerColors.ARCANECHARGES", hidden = function(info) return select(2, UnitClass("player")) ~= "MAGE" end, }, + ESSENCE = { + order = 16, + type = "color", + name = L["Essence"], + hasAlpha = true, + arg = "powerColors.ESSENCE", + hidden = function(info) return select(2, UnitClass("player")) ~= "EVOKER" end, + }, CHI = { order = 17, type = "color",