From c49e0ad84afc8dadddaf044a4778be9e2202f7ca Mon Sep 17 00:00:00 2001 From: Parnic Date: Thu, 26 May 2016 21:47:31 -0500 Subject: [PATCH] Set color for DH Fury resource --- modules/PlayerMana.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/PlayerMana.lua b/modules/PlayerMana.lua index 87f699b..bd38c31 100644 --- a/modules/PlayerMana.lua +++ b/modules/PlayerMana.lua @@ -18,6 +18,7 @@ function PlayerMana.prototype:init() self:SetDefaultColor("PlayerRunicPower", 62, 54, 152) if IceHUD.WowVer >= 70000 then self:SetDefaultColor("PlayerInsanity", 150, 50, 255) + self:SetDefaultColor("PlayerFury", 255, 50, 255) end end @@ -294,6 +295,8 @@ function PlayerMana.prototype:Update(unit, powertype) color = "PlayerFocus" elseif (IceHUD.WowVer >= 70000 and self.manaType == SPELL_POWER_INSANITY) then color = "PlayerInsanity" + elseif (IceHUD.WowVer >= 70000 and self.manaType == SPELL_POWER_FURY) then + color = "PlayerFury" end end