From 23a0fc2695539e1355714bd91160bd38657c14f9 Mon Sep 17 00:00:00 2001 From: InflictWounds <66794518+InflictWounds@users.noreply.github.com> Date: Fri, 12 Jun 2020 12:25:49 +0200 Subject: [PATCH] Fix Details.SpellsToIgnore[SpellID] for heal spells --- Details/core/parser.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Details/core/parser.lua b/Details/core/parser.lua index e613b58..328f61e 100644 --- a/Details/core/parser.lua +++ b/Details/core/parser.lua @@ -1435,6 +1435,10 @@ function parser:spell_dmg(token, time, who_serial, who_name, who_flags, alvo_ser end --who_serial = nil end + + if damage_spells_to_ignore[spellid] then + return + end --> no name, use spellname if(not who_name) then @@ -5028,4 +5032,4 @@ function _detalhes.pvp_parser_frame:ReadPvPData() end end end -end \ No newline at end of file +end