Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Jul 9, 2024
1 parent f344f5a commit 27329d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions DBM-Raids-Cata/DragonSoul/Zonozz.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,13 @@ function mod:SPELL_AURA_APPLIED(args)
timerBlackBlood:Start()
self:Schedule(30, blackBloodEnds)
if self:IsDifficulty("heroic10", "heroic25") then
if timerVoidofUnmakingCD:GetTime() > 45.3 then--Heroic has a failsafe in place, if CD ends before 15 seconds after black phase ending, it's extended
--Heroic has a failsafe in place, if CD ends before 15 seconds after black phase ending, it's extended
if timerVoidofUnmakingCD:GetTime() > 45.3 then
timerVoidofUnmakingCD:Update(45.3, 90.3)
end
else
if timerVoidofUnmakingCD:GetTime() > 54.3 then--Normal also has a failsafe but much smaller
--Normal also has a failsafe but much smaller
if timerVoidofUnmakingCD:GetTime() > 54.3 then
timerVoidofUnmakingCD:Update(54.3, 90.3)
end
end
Expand Down

0 comments on commit 27329d2

Please sign in to comment.