Skip to content

Commit

Permalink
Fixed Northrend Beasts enrage alert not showing target name
Browse files Browse the repository at this point in the history
Fixed Saviana enrage alert not showing target name
  • Loading branch information
MysticalOS committed Jul 14, 2024
1 parent 94e4054 commit ebe015a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DBM-Raids-WoTLK/Coliseum/Anubarak.lua
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function mod:SPELL_AURA_APPLIED(args)
end
end
if args:IsPlayer() then
specWarnPCold:Show(self:IconNumToTexture(icon))
specWarnPCold:Show()
specWarnPCold:Play("targetyou")
end
warnPCold:CombinedShow(0.5, args.destName)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-WoTLK/Coliseum/NorthrendBeasts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function mod:SPELL_AURA_APPLIED(args)
timerNextImpale:Start()
warnImpaleOn:Show(args.destName, 1)
elseif args.spellId == 66759 then
specWarnFrothingRage:Show()
specWarnFrothingRage:Show(args.destName)
specWarnFrothingRage:Play("trannow")
elseif args.spellId == 66823 then
warnToxin:CombinedShow(0.3, args.destName)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-WoTLK/RubySanctum/Saviana.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ end

function mod:SPELL_AURA_APPLIED(args)
if args.spellId == 78722 then
specWarnTranq:Show()
specWarnTranq:Show(args.destName)
specWarnTranq:Play("trannow")
timerEnrage:Start()
elseif args.spellId == 74453 then
Expand Down

0 comments on commit ebe015a

Please sign in to comment.