Skip to content

Commit

Permalink
WoD/TheEverbloom/AncientProtectors: Fix Torrential Fury and Terrestri…
Browse files Browse the repository at this point in the history
…al Fury timers
  • Loading branch information
ntowle committed Sep 30, 2023
1 parent f1fc461 commit 44f9ca3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions WoD/TheEverbloom/AncientProtectors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ end
function mod:TorrentialFury(args)
self:Message(args.spellId, "orange")
self:PlaySound(args.spellId, "alarm")
self:CDBar(args.spellId, 52.1)
if not earthshaperTeluDefeated then
-- this will not be cast again if Earthshaper Telu has been defeated
self:CDBar(args.spellId, 52.1)
end
end

function mod:LifeWardenGolaDeath(args)
Expand All @@ -155,7 +158,10 @@ end
function mod:TerrestrialFury(args)
self:Message(args.spellId, "orange")
self:PlaySound(args.spellId, "alarm")
self:CDBar(args.spellId, 52.1)
if not lifeWardenGolaDefeated then
-- this will not be cast again if Life Warden Gola has been defeated
self:CDBar(args.spellId, 52.1)
end
end

function mod:EarthshaperTeluDeath(args)
Expand Down

0 comments on commit 44f9ca3

Please sign in to comment.