From 87fc8f1a1edde4a27e93399fdb118a2eba105f62 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Thu, 25 Jul 2019 22:52:50 +0200 Subject: [PATCH] Scripts/BoT: fixed an issue that was preventing the Elementium Monstrosity to properly channel Gravity Crush --- .../BastionOfTwilight/boss_ascendant_council.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp b/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp index c1f97c2f5bf..94d5ff3e56c 100644 --- a/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp +++ b/src/server/scripts/EasternKingdoms/BastionOfTwilight/boss_ascendant_council.cpp @@ -108,6 +108,7 @@ enum Spells SPELL_ERUPTION_DAMAGE = 83692, SPELL_ELEMENTAL_STASIS = 82285, SPELL_TELEPORT_EARTH = 82329, + SPELL_GRAVITY_CORE = 92075, // Elementium Monstrosity SPELL_TWILIGHT_EXPLOSION_DND = 95789, @@ -120,7 +121,6 @@ enum Spells SPELL_LIQUID_ICE_MOD_SCALE = 84917, SPELL_GRAVITY_CRUSH = 84948, SPELL_GRAVITY_CRUSH_SUMMON = 84947, // Serverside spell - SPELL_GRAVITY_CORE = 92075, // Water Bomb SPELL_WATER_BOMB_TRIGGERED = 82700, @@ -1450,6 +1450,7 @@ class npc_elementium_monstrosity : public CreatureScript _events.Repeat(21s + 700ms); break; case EVENT_GRAVITY_CRUSH: + me->StopMoving(); DoCastAOE(SPELL_GRAVITY_CRUSH); _events.Repeat(24s, 28s); break;