From cf2ef0c8071a3bce6c980741dc55608c5aa1b793 Mon Sep 17 00:00:00 2001 From: MysticalOS Date: Sat, 1 Jun 2024 00:50:28 -0400 Subject: [PATCH] Deprecate restart object in all modules --- DBM-Raids-WoTLK/RubySanctum/Halion.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DBM-Raids-WoTLK/RubySanctum/Halion.lua b/DBM-Raids-WoTLK/RubySanctum/Halion.lua index f954976..19e3983 100644 --- a/DBM-Raids-WoTLK/RubySanctum/Halion.lua +++ b/DBM-Raids-WoTLK/RubySanctum/Halion.lua @@ -195,7 +195,8 @@ function mod:SPELL_CAST_START(args) self:SetStage(3) warnPhase3:Show() warnPhase3:Play("pthree") - timerFieryConbustionCD:Restart(20)--restart is used purely to avoid false debug on retail when boss is instantly phased into phase 3 in one attack (thus clipping P1 timer) + timerFieryConbustionCD:Stop() + timerFieryConbustionCD:Start(20)--restart is used purely to avoid false debug on retail when boss is instantly phased into phase 3 in one attack (thus clipping P1 timer) end end