diff options
author | Trazom62 <none@none> | 2010-01-30 16:01:46 +0100 |
---|---|---|
committer | Trazom62 <none@none> | 2010-01-30 16:01:46 +0100 |
commit | c7d9ffd25bdecd43973cb9cad77e20b667c5ea61 (patch) | |
tree | 1dc9295b1e4ab7cf1c13fc65477b21c0d98e56fd | |
parent | 1b92277e8cb4183095fdd0299c8de15d34b6109b (diff) |
Fix Script Naxxramas/KelThuzad. Thanks scarymovie87 for pointing out the issue in previous patch.
- frost blast shall target MT in 25-mode only.
--HG--
branch : trunk
-rw-r--r-- | src/scripts/northrend/naxxramas/boss_kelthuzad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/northrend/naxxramas/boss_kelthuzad.cpp b/src/scripts/northrend/naxxramas/boss_kelthuzad.cpp index ee05b5ef455..8fef3040ea2 100644 --- a/src/scripts/northrend/naxxramas/boss_kelthuzad.cpp +++ b/src/scripts/northrend/naxxramas/boss_kelthuzad.cpp @@ -298,7 +298,7 @@ struct TRINITY_DLL_DECL boss_kelthuzadAI : public BossAI events.RepeatEvent(urand(10000,45000)); break; case EVENT_BLAST: - if (Unit *pTarget = SelectTarget(SELECT_TARGET_RANDOM, 1, 0, true)) + if (Unit *pTarget = SelectTarget(SELECT_TARGET_RANDOM, RAID_MODE(1,0), 0, true)) DoCast(pTarget, SPELL_FROST_BLAST); if (rand()%2) DoScriptText(SAY_FROST_BLAST, m_creature); |