Skip to content

Commit

Permalink
Fix more errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Apr 5, 2024
1 parent 81aed15 commit b5ed5b7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions DBM-Raids-Vanilla/VanillaSoD_SunkenTemple/AtalaiDefenders.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,12 @@ function mod:OnCombatStart(delay)
--If it's one of those things where timers start based on who you pull then we'd need to scan for initial attacks on every boss, entire fight :\
--timerFrailtyCD:Start(6.3-delay)
--timerChargeCD:Start(14.4-delay)
--timerCorruptedSlamCD:Start(15.6-delay)
end

function mod:SPELL_CAST_START(args)
if args:IsSpell(446372) then
specWarnCorruptedSlam:Show()
specWarnCorruptedSlam:Play("watchstep")
timerCorruptedSlamCD:Start()
elseif args:IsSpell(438294) then
warnThorns:Show(args.sourceName)--Paladin aura of a druid ability, nani?
elseif args:IsSpell(438335) then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function mod:SPELL_CAST_START(args)
specWarnWingBuffet:Play("carefly")
timerWingBuffetCD:Start()
end
elseif arsg:IsSpell(443830) then
elseif args:IsSpell(443830) then
if self:AntiSpam(3, 1) then--Aggregate warnings when both dragons are out, they're cast at same time
specWarnDelayedWingBuffet:Show()
specWarnDelayedWingBuffet:Play("carefly")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpell(437847) then
timerMortalLashCD:Start()
elseif spellId == 437930 then
elseif args:IsSpell(437930) then
timerPWSCD:Start()
end
end
Expand Down

0 comments on commit b5ed5b7

Please sign in to comment.