Skip to content

Commit

Permalink
BlackwingLair/Trash: Fix parser error
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Sep 26, 2024
1 parent dd926be commit 82c53cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BlackwingLair/Trash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ end
function mod:ArcaneBombApplied(args)
self:TargetMessage(args.spellId, "yellow", args.destName)
if self:Me(args.destGUID) then
self:Yell(args.spellId)
self:Yell(args.spellId, nil, nil, "Arcane Bomb")
self:YellCountdown(args.spellId, 8, nil, 5)
self:PlaySound(args.spellId, "warning", nil, args.destName)
end
Expand All @@ -157,7 +157,7 @@ end
function mod:NaturesFuryApplied(args)
self:TargetMessage(args.spellId, "yellow", args.destName)
if self:Me(args.destGUID) then
self:Say(args.spellId)
self:Say(args.spellId, nil, nil, "Natures Fury")
self:SayCountdown(args.spellId, 8, nil, 5)
self:PlaySound(args.spellId, "warning", nil, args.destName)
end
Expand Down

0 comments on commit 82c53cf

Please sign in to comment.