Skip to content

Commit

Permalink
Fix invalid variable reference on Alysrazor that caused non heroic in…
Browse files Browse the repository at this point in the history
…tiiate timers not to show and instead throw nil errors
  • Loading branch information
MysticalOS committed Sep 23, 2024
1 parent b7b3c86 commit 5ca9740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DBM-Raids-Cata/Firelands/Alysrazor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ do
warnNewInitiate:Show(initiateSpawns[self.vb.initiatesSpawned])
if self.vb.initiatesSpawned == 6 then return end--All 6 are spawned, lets not create any timers.
local nextText = initiateSpawns[self.vb.initiatesSpawned+1]
local nextTimer = self:IsHeroic() and intiateHeroicTimers[self.vb.initiatesSpawned+1] or initiateSpawns[self.vb.initiatesSpawned+1]
local nextTimer = self:IsHeroic() and intiateHeroicTimers[self.vb.initiatesSpawned+1] or intiateTimers[self.vb.initiatesSpawned+1]
timerNextInitiate:Start(nextTimer, nextText)
end
end
Expand Down

0 comments on commit 5ca9740

Please sign in to comment.