Fix HoT cache being stored as a string

This commit is contained in:
OldManAlpha 2025-08-21 20:55:59 -07:00
parent 7a2007044f
commit fb2ad22973

View File

@ -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"]