aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp
index 0b570a7d5b5..4fb427dfef5 100644
--- a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp
+++ b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp
@@ -30,8 +30,7 @@ enum Spells
SPELL_DECREPIT_FEVER = 29998, // 25-man: 55011
SPELL_SPELL_DISRUPTION = 29310,
SPELL_PLAGUE_CLOUD = 29350,
- SPELL_TELEPORT_SELF = 30211,
- SPELL_ERUPTION = 29371
+ SPELL_TELEPORT_SELF = 30211
};
enum Yells
@@ -194,7 +193,9 @@ public:
if (GameObject* tile = ObjectAccessor::GetGameObject(*me, tileGUID))
{
tile->SendCustomAnim(0);
- tile->CastSpell(nullptr, SPELL_ERUPTION);
+ CastSpellExtraArgs args;
+ args.OriginalCaster = me->GetGUID();
+ tile->CastSpell(tile, tile->GetGOInfo()->trap.spellId, args);
}
if (_safeSection == 0)