From e29429462c3db84a41a1cb7328ecb6e068724012 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Mon, 10 Jul 2023 05:59:55 -0300 Subject: [PATCH] chore(Scripts/MagtheridonsLair): Adjust Magtheridon's timers (#16723) Update boss_magtheridon.cpp --- .../HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp index 077dbd977..af6283e0b 100644 --- a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp @@ -177,11 +177,11 @@ public: scheduler.Schedule(9s, [this](TaskContext context) { DoCastVictim(SPELL_CLEAVE); - context.Repeat(10s); - }).Schedule(10s, [this](TaskContext context) + context.Repeat(1200ms, 16300ms); + }).Schedule(20s, [this](TaskContext context) { me->CastCustomSpell(SPELL_BLAZE, SPELLVALUE_MAX_TARGETS, 1); - context.Repeat(30s); + context.Repeat(11s, 39s); }).Schedule(40s, [this](TaskContext context) { me->CastSpell(me, SPELL_QUAKE); //needs fixes with custom spell @@ -203,7 +203,7 @@ public: scheduler.CancelGroup(GROUP_INTERRUPT_CHECK); }); }); - context.Repeat(50s); + context.Repeat(53s, 56s); }).Schedule(1320s, [this](TaskContext /*context*/) { DoCastSelf(SPELL_BERSERK, true);