Skip to content

Commit

Permalink
Better checks for Wither preghost
Browse files Browse the repository at this point in the history
  • Loading branch information
d87 committed Aug 29, 2024
1 parent ea556e2 commit cc91313
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,14 +261,14 @@ end
Spell( 146739 ,{ name = "", preghost = 5, maxtimers = 5, duration = 14, recast_mark = 4.2, overlay = {0,4.2, 0.2}, priority = 9, fixedlen = normalize_dots_to, nameplates = true, ghost = 6, color = colors.PINKIERED,
init = absolute_cprruption_transform,
isknowncheck = function()
return IsPlayerSpell(172)
return IsPlayerSpell(172) and not IsPlayerSpell(445465)
end})

--Wither (Replaces Immolate/Corruption)
Spell( 445474 ,{ name = "", preghost = 5, maxtimers = 5, duration = 18, recast_mark = 4.2, overlay = {0,4.2, 0.2}, priority = 9, fixedlen = normalize_dots_to, nameplates = true, ghost = 6, color = colors.PINKIERED,
init = absolute_cprruption_transform,
isknowncheck = function()
return IsPlayerSpell(445474)
return IsPlayerSpell(445465)
end})
--Siphon Life
Spell( 63106 ,{ name = "", preghost = 5, duration = 15, recast_mark = 4.5, overlay = {0, 4.5, 0.2}, priority = 5, fixedlen = normalize_dots_to, nameplates = true, ghost = 6, color = colors.DTEAL, init = creeping_death,
Expand Down

0 comments on commit cc91313

Please sign in to comment.