Skip to content

Commit

Permalink
Fix spell ordering on CC break alert (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arrhae authored Feb 11, 2024
1 parent 464cebd commit dae54f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/Alerts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ do
local index = source..spell..extra
if not targets[index] then
targets[index] = {}
self:ScheduleTimer(spam, 0.2, key, index, L["%s on %s removed by %s's %s"], extra, targets[index], source, spell)
self:ScheduleTimer(spam, 0.2, key, index, L["%s on %s removed by %s's %s"], spell, targets[index], source, extra)
end
tinsert(targets[index], dest)
end
Expand Down Expand Up @@ -645,7 +645,7 @@ function module:Dispel(srcOutput, dstOutput, spellOutput, extraSpellOuput)
end

function module:MassDispel(srcOutput, dstOutput, spellOutput, extraSpellOuput)
self:SpamMultiRemoved("dispel", srcOutput, dstOutput, spellOutput, extraSpellOuput)
self:SpamMultiRemoved("dispel", srcOutput, dstOutput, extraSpellOuput, spellOutput) -- Mass Dispel has the spell/extra spell flipped
end

function module:Interrupt(srcOutput, dstOutput, spellOutput, extraSpellOuput)
Expand Down

0 comments on commit dae54f7

Please sign in to comment.