Skip to content

Commit

Permalink
AQ40/Twins: Remove unneeded extra spell ID
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Dec 7, 2024
1 parent b4fb86e commit 2febf8b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions AQ40/Twins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ end

function mod:OnBossEnable()
self:Log("SPELL_AURA_APPLIED", "TwinTeleport", 800)
if self:GetSeason() == 2 then
self:Log("SPELL_AURA_APPLIED", "TwinTeleport", 1217333)
end
self:Log("SPELL_HEAL", "HealBrother", 7393)
self:Log("SPELL_AURA_APPLIED", "MutateBug", 802)
self:Log("SPELL_AURA_APPLIED", "ExplodeBug", 804)
Expand All @@ -52,9 +49,9 @@ do
function mod:TwinTeleport(args)
if args.time - prev > 2 then
prev = args.time
self:Message(800, "orange")
self:CDBar(800, 30)
self:PlaySound(800, "alert")
self:Message(args.spellId, "orange")
self:CDBar(args.spellId, 30)
self:PlaySound(args.spellId, "alert")
end
end
end
Expand Down

0 comments on commit 2febf8b

Please sign in to comment.