From 44f9ca383b943668dfdd5cf21b984b3e835231ed Mon Sep 17 00:00:00 2001 From: Nick Towle Date: Sat, 30 Sep 2023 17:32:43 -0400 Subject: [PATCH] WoD/TheEverbloom/AncientProtectors: Fix Torrential Fury and Terrestrial Fury timers --- WoD/TheEverbloom/AncientProtectors.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/WoD/TheEverbloom/AncientProtectors.lua b/WoD/TheEverbloom/AncientProtectors.lua index 38588b946..6dcbeadb3 100644 --- a/WoD/TheEverbloom/AncientProtectors.lua +++ b/WoD/TheEverbloom/AncientProtectors.lua @@ -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) @@ -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)