Skip to content

Commit

Permalink
Ignore Forgeborne Reveries healing done
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Feb 17, 2021
1 parent 85038b0 commit 8b3165a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions core/parser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
local damage_cache_petsOwners = setmetatable ({}, _detalhes.weaktable)
--> heaing
local healing_cache = setmetatable ({}, _detalhes.weaktable)
local banned_healing_spells = {
[326514] = true, --remove on 10.0 - Forgeborne Reveries - necrolords ability
}
--> energy
local energy_cache = setmetatable ({}, _detalhes.weaktable)
--> misc
Expand Down Expand Up @@ -1771,6 +1774,11 @@
if (not alvo_name) then
return
end

--> check for banned spells
if (banned_healing_spells[spellid]) then
return
end

--> spirit link toten
if (spellid == SPELLID_SHAMAN_SLT) then
Expand Down
2 changes: 1 addition & 1 deletion frames/window_profiler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function Details:OpenProfiler()
end
f:Hide()
end
local confirm = Details.gump:NewButton (f, f, "DetailsProfilerProfileConfirmButton", "button", 150, 20, confirm_func, nil, nil, nil, "okey!")
local confirm = Details.gump:NewButton (f, f, "DetailsProfilerProfileConfirmButton", "button", 150, 20, confirm_func, nil, nil, nil, "Okey!")
confirm:SetPoint (50, -250)
confirm:InstallCustomTexture()
end

0 comments on commit 8b3165a

Please sign in to comment.