From 8469824f538e489e577d2a408129bc966b103038 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sun, 17 Mar 2019 12:28:11 -0500 Subject: [PATCH] Fixed player health not updating to max health --- modules/PlayerHealth.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/PlayerHealth.lua b/modules/PlayerHealth.lua index 1f9c0c2..a8335da 100644 --- a/modules/PlayerHealth.lua +++ b/modules/PlayerHealth.lua @@ -68,6 +68,7 @@ function PlayerHealth.prototype:Enable(core) PlayerHealth.super.prototype.Enable(self, core) self:RegisterEvent("UNIT_HEALTH", "UpdateEvent") + self:RegisterEvent("UNIT_HEALTH_FREQUENT", "UpdateEvent") self:RegisterEvent("UNIT_MAXHEALTH", "UpdateEvent") self:RegisterEvent("PLAYER_ENTERING_WORLD", "EnteringWorld")