From b0003664b76c9ea368acb82864cf9f832b41c36a Mon Sep 17 00:00:00 2001 From: MysticalOS Date: Wed, 29 Nov 2023 16:10:26 -0500 Subject: [PATCH] use correct spellid for plague in AQ40, Closes https://github.com/DeadlyBossMods/DBM-Classic/issues/777 --- DBM-Raids-Vanilla/AQ40/AQ40Trash.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/DBM-Raids-Vanilla/AQ40/AQ40Trash.lua b/DBM-Raids-Vanilla/AQ40/AQ40Trash.lua index bfa2fa8e..03c205b4 100644 --- a/DBM-Raids-Vanilla/AQ40/AQ40Trash.lua +++ b/DBM-Raids-Vanilla/AQ40/AQ40Trash.lua @@ -17,8 +17,8 @@ mod.isTrashMod = true mod:RegisterEvents( "ENCOUNTER_END", - "SPELL_AURA_APPLIED 22997 25698 26079", - "SPELL_AURA_REMOVED 22997", + "SPELL_AURA_APPLIED 26556 25698 26079", + "SPELL_AURA_REMOVED 26556", "SPELL_DAMAGE", "SPELL_MISSED" ) @@ -46,16 +46,16 @@ mod:RegisterShortTermEvents( mod:SendSync("IsAQ40Started") do-- Anubisath Plague/Explode - keep in sync - AQ40/AQ40Trash.lua AQ20/AQ20Trash.lua - local warnPlague = mod:NewTargetNoFilterAnnounce(22997, 2) + local warnPlague = mod:NewTargetNoFilterAnnounce(26556, 2) local warnCauseInsanity = mod:NewTargetNoFilterAnnounce(26079, 2) - local specWarnPlague = mod:NewSpecialWarningMoveAway(22997, nil, nil, nil, 1, 2) - local yellPlague = mod:NewYell(22997) + local specWarnPlague = mod:NewSpecialWarningMoveAway(26556, nil, nil, nil, 1, 2) + local yellPlague = mod:NewYell(26556) local specWarnExplode = mod:NewSpecialWarningRun(25698, "Melee", nil, 3, 4, 2) -- aura applied didn't seem to catch the reflects and other buffs function mod:SPELL_AURA_APPLIED(args) - if args:IsSpell(22997) and not self:IsTrivial() then + if args:IsSpell(26556) and not self:IsTrivial() then if args:IsPlayer() then specWarnPlague:Show() specWarnPlague:Play("runout") @@ -75,7 +75,7 @@ do-- Anubisath Plague/Explode - keep in sync - AQ40/AQ40Trash.lua AQ20/AQ20Trash end function mod:SPELL_AURA_REMOVED(args) - if args:IsSpell(22997) then + if args:IsSpell(26556) then if args:IsPlayer() and self.Options.RangeFrame then DBM.RangeCheck:Hide() end