From b0e648d69e4ec65d27db624659e6bf3255d96935 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 12 Oct 2018 12:46:15 +0200 Subject: [PATCH] Scripts/BoT: prevent Flame Torrent from being interrupted by movement --- .../EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp b/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp index dc5f4d36656..386174f1b8d 100644 --- a/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp +++ b/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp @@ -860,6 +860,7 @@ class npc_ignacious : public CreatureScript DoCastSelf(SPELL_RISING_FLAMES); break; case EVENT_FLAME_TORRENT: + me->StopMoving(); DoCastSelf(SPELL_FLAME_TORRENT); _events.Repeat(Seconds(12)); break;