From 473e22a9710862afeea5fca4dd97f139c7c4cb58 Mon Sep 17 00:00:00 2001 From: d87 Date: Wed, 7 Oct 2020 21:03:32 +0700 Subject: [PATCH] Update mana color when switching fill settings --- Aptechka.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Aptechka.lua b/Aptechka.lua index f3a3cdf..4a488d8 100644 --- a/Aptechka.lua +++ b/Aptechka.lua @@ -741,7 +741,9 @@ function Aptechka:Reconfigure() end function Aptechka:RefreshAllUnitsHealth() Aptechka:ForEachFrame(Aptechka.FrameUpdateHealth) - Aptechka:ForEachFrame(Aptechka.FrameUpdatePower) + Aptechka:ForEachFrame(function(frame, unit) + Aptechka.FrameUpdatePower(frame, unit, "MANA") + end) end function Aptechka.FrameUpdateUnitColor(frame, unit) Aptechka.FrameColorize(frame, unit)