Add option to split dot / hot damage into separate entries entirely.

This commit is contained in:
andrew6180
2024-06-18 13:07:28 -07:00
parent 016c68d243
commit faf859dc7d
16 changed files with 80 additions and 2 deletions
+6 -1
View File
@@ -4,7 +4,7 @@
local addonName, Details222 = ...
local healingAbility = Details.habilidade_cura
function healingAbility:NovaTabela(id)
function healingAbility:NovaTabela(id, link, token)
---@type spelltable
local spellTable = {
--spellId
@@ -40,6 +40,11 @@
targets_absorbs = {}
}
if (token == "SPELL_PERIODIC_HEAL") and Details.combat_log.separate_hot_effects then
Details:SetAsHotSpell(id)
end
return spellTable
end