From 5e04739306ac4611ca512ae16ebcd06f01f113cd Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 22 Nov 2014 02:11:54 -0600 Subject: [PATCH] Fixed a bug where Monks with more than 4 Chi would not draw the additional Chi properly on initial load into the world --- modules/HarmonyPower.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/HarmonyPower.lua b/modules/HarmonyPower.lua index 45d8e32..a74f5c4 100644 --- a/modules/HarmonyPower.lua +++ b/modules/HarmonyPower.lua @@ -33,6 +33,8 @@ function HarmonyPower.prototype:Enable(core) HarmonyPower.super.prototype.Enable(self, core) self:RegisterEvent("UNIT_POWER_FREQUENT", "UpdateRunePower") + + self:Redraw() end function HarmonyPower.prototype:UpdateRunePower(event, arg1, arg2)