Skip to content

Commit

Permalink
Highlight Magic for Mages with Advanced Warding rune in SoD
Browse files Browse the repository at this point in the history
  • Loading branch information
d87 committed Aug 17, 2024
1 parent ff4aae0 commit 8019b0c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion config.classic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,14 @@ if playerClass == "MAGE" then
-- end

config.DispelBitmasks = {
DispelTypes("Curse")
-- DispelTypes("Curse")
function(spec)
if IsPlayerSpell(412113) then -- SoD: Remove Greater Curse from Advanced Warding Rune
return DispelTypes("Magic", "Curse")
else
return DispelTypes("Curse")
end
end
}
end

Expand Down

0 comments on commit 8019b0c

Please sign in to comment.