From fb2ad2297367b6182638f4422610c024efb576a2 Mon Sep 17 00:00:00 2001 From: OldManAlpha <60587722+OldManAlpha@users.noreply.github.com> Date: Thu, 21 Aug 2025 20:55:59 -0700 Subject: [PATCH] Fix HoT cache being stored as a string --- libs/HealPredict.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/HealPredict.lua b/libs/HealPredict.lua index 1b67adf..d61a408 100644 --- a/libs/HealPredict.lua +++ b/libs/HealPredict.lua @@ -303,6 +303,7 @@ function UpdateCacheHot(spellName, heal, targetGuid, targetName, casterGuid, cas if not hots[spellName] then return end + heal = tonumber(heal) or 0 local hot = hots[spellName] if hot["heal"] ~= heal then local prevHeal = hot["heal"]