fix(dispels): add Curse to Witch Doctor dispel set (Hexbreak 806240)
release / release (push) Successful in 3s
release / release (push) Successful in 3s
WITCHDOCTOR could only flag Disease/Poison (Cleansing Idol). Hexbreak (806240) is a single-target Curse remover, so add Curse=true. highlight.lua reads this via GetCoaDispels, so the dispellable-debuff highlight picks it up.
This commit is contained in:
@@ -21,7 +21,7 @@ local COA_CLASS_DISPELS = {
|
|||||||
["WITCHHUNTER"] = { Curse = true },
|
["WITCHHUNTER"] = { Curse = true },
|
||||||
["SUNCLERIC"] = { Magic = true, Disease = true, Poison = true }, -- Sanctify
|
["SUNCLERIC"] = { Magic = true, Disease = true, Poison = true }, -- Sanctify
|
||||||
["WILDWALKER"] = { Disease = true, Poison = true }, -- Primalist (Soothing Touch — DBC says Magic, gameplay is Poison/Disease)
|
["WILDWALKER"] = { Disease = true, Poison = true }, -- Primalist (Soothing Touch — DBC says Magic, gameplay is Poison/Disease)
|
||||||
["WITCHDOCTOR"] = { Disease = true, Poison = true }, -- Cleansing Idol (AoE)
|
["WITCHDOCTOR"] = { Curse = true, Disease = true, Poison = true }, -- Hexbreak (806240, single-target Curse) + Cleansing Idol (504840, AoE Disease/Poison)
|
||||||
["TINKER"] = { Disease = true, Poison = true }, -- Nanobot Cleanser
|
["TINKER"] = { Disease = true, Poison = true }, -- Nanobot Cleanser
|
||||||
}
|
}
|
||||||
local function getCoaDispels()
|
local function getCoaDispels()
|
||||||
|
|||||||
Reference in New Issue
Block a user