diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp index 596906ab752..d8d484424db 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp @@ -146,7 +146,7 @@ public: if (_instance->GetData(TYPE_IRON_HALL) == NOT_STARTED) return; // Once the boss is engaged, the guardians will stay activated until the next instance reset - _events.ScheduleEvent(EVENT_GOUTOFFLAME, 0s); + _events.ScheduleEvent(EVENT_GOUTOFFLAME, 0s, 10s); _active = true; } @@ -157,7 +157,7 @@ public: if (eventId == EVENT_GOUTOFFLAME) { DoCastAOE(SPELL_GOUTOFFLAME); - _events.Repeat(16s); + _events.Repeat(16s, 21s); } } } |