Skip to content

Commit

Permalink
NightmareGrove_Classic/Ysondre: Fix missing option flags
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Dec 7, 2024
1 parent 1744f7b commit f88eb7d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions NightmareGrove_Classic/Ysondre.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function mod:GetOptions()
return {
-- 24819, -- Lightning Wave
24795, -- Summon Demented Druid Spirit
1214136, -- Divergent Lightning
{1214136, "SAY", "SAY_COUNTDOWN", "ME_ONLY_EMPHASIZE"}, -- Divergent Lightning
divergentLightningMarker,
-- Shared
24818, -- Noxious Breath
Expand Down Expand Up @@ -107,6 +107,7 @@ do
function mod:DivergentLightning(args)
playerList = {}
icon = 8
self:Bar(args.spellId, 8, CL.soaks)
self:PlaySound(args.spellId, "warning")
end

Expand All @@ -117,7 +118,6 @@ do
if self:Me(args.destGUID) then
self:Yell(args.spellId, CL.soak, nil, "Soak")
self:YellCountdown(args.spellId, 8, icon, 4)
self:TargetBar(args.spellId, 8, args.destName, CL.soak)
end
icon = icon - 1
end
Expand All @@ -126,7 +126,6 @@ end
function mod:DivergentLightningRemoved(args)
if self:Me(args.destGUID) then
self:CancelYellCountdown(args.spellId)
self:StopBar(CL.soak, args.destName)
end
self:CustomIcon(divergentLightningMarker, args.destName)
end
Expand Down

0 comments on commit f88eb7d

Please sign in to comment.