Skip to content

Commit

Permalink
Fix deprecated stage timers
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Jun 29, 2024
1 parent 09b5b1f commit 1a7e70e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DBM-Raids-Legion/AntorusBurningThrone/ArgustheUnmaker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ local warnPhase = mod:NewPhaseChangeAnnounce()

local specWarnGTFO = mod:NewSpecialWarningGTFO(248167, nil, nil, nil, 1, 2)

local timerNextPhase = mod:NewPhaseTimer(74)
local timerNextPhase = mod:NewStageTimer(74)

local berserkTimer = mod:NewBerserkTimer(600)

Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-Legion/Nighthold/ChronoAnomaly.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ local timerBurstofTimeCD = mod:NewNextCountTimer(30, 206614, nil, nil, nil, 3)
local timerTimeReleaseCD = mod:NewNextCountTimer(30, 206610, nil, "Healer", nil, 5, nil, DBM_COMMON_L.HEALER_ICON)
local timerChronoPartCD = mod:NewCDTimer(5, 206607, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)
local timerBigAddCD = mod:NewNextCountTimer(30, 206700, nil, nil, nil, 1, nil, nil, nil, 1, 4)--Switch to waning time particle when section info known
local timerNextPhase = mod:NewPhaseTimer(74)--Used anywhere phase change is NOT immediately after power overwhelming
local timerNextPhase = mod:NewStageTimer(74)--Used anywhere phase change is NOT immediately after power overwhelming

mod:AddRangeFrameOption(10, 206617)
mod:AddInfoFrameOption(206610)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-Legion/Nighthold/Guldan.lua
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ local timerDzorykxCD = mod:NewCastTimer(35, "ej13129", nil, nil, nil, 1, 2122
local timerSoulVortexCD = mod:NewCDTimer(21, 206883, nil, nil, nil, 3)--34-36
--Stage Two: The Ritual of Aman'thul
mod:AddTimerLine(SCENARIO_STAGE:format(2))
local timerTransition = mod:NewPhaseTimer(19)
local timerTransition = mod:NewStageTimer(19)
local timerHandofGuldanCD = mod:NewNextCountTimer(58.5, 212258, nil, nil, nil, 1, nil, nil, nil, mod:IsTank() and 2 or nil, 4)
local timerBondsofFelCD = mod:NewNextCountTimer(50, 206222, nil, nil, nil, 3, nil, nil, nil, 1, 4)
local timerEyeofGuldanCD = mod:NewNextCountTimer(60, 209270, nil, nil, nil, 1, nil, nil, nil, not mod:IsTank() and 2 or nil, 4)
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-Legion/TombofSargeras/Kiljaeden.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ local timerArmageddon = mod:NewCastTimer(9, 234295, nil, nil, nil, 2)--Armage
local timerShadReflectionEruptingCD = mod:NewCDTimer(35, 236710, 236711, nil, nil, 3, nil, DBM_COMMON_L.DAMAGE_ICON)--Shortname : Erupting Reflection
--Intermission: Eternal Flame
--mod:AddTimerLine(SCENARIO_STAGE:format(1.5))
local timerTransition = mod:NewPhaseTimer(57.9)
local timerTransition = mod:NewStageTimer(57.9)
local timerFocusedDreadflameCD = mod:NewCDCountTimer(31, 238502, nil, nil, nil, 3, nil, nil, nil, 3, 4)
local timerBurstingDreadflameCD = mod:NewCDCountTimer(31, 238430, nil, nil, nil, 3)
--Stage Two: Reflected Souls
Expand Down

0 comments on commit 1a7e70e

Please sign in to comment.