From 1ab83feb761c139a83c7c8405be968410491cd37 Mon Sep 17 00:00:00 2001 From: Poszer <41213210+poszer@users.noreply.github.com> Date: Sun, 26 May 2019 15:04:23 +0200 Subject: [PATCH] fix(Core/Raid): Vault of Archavon stomp (#1871) - Archavon will stomp the ground, dealing approximately 4,000 unmitigable damage to everyone and stunning them for 2 seconds. At the same time, he'll Impale his highest aggro target, removing it from the fight for 8 seconds. --- src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp index d1b931af4..d35ec6acf 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp @@ -121,7 +121,6 @@ class boss_archavon : public CreatureScript sprintf(buffer, "Archavon the Stone Watcher lunges for %s!", me->GetVictim()->GetName().c_str()); me->MonsterTextEmote(buffer, 0); me->CastSpell(me->GetVictim(), RAID_MODE(SPELL_STOMP_10, SPELL_STOMP_25), false); - me->GetVictim()->KnockbackFrom(me->GetPositionX(), me->GetPositionY(), 3.0f, 40.0f); events.RepeatEvent(45000); events.ScheduleEvent(EVENT_IMPALE, 3000); break;