aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrazom62 <none@none>2010-01-29 19:45:49 +0100
committerTrazom62 <none@none>2010-01-29 19:45:49 +0100
commit5757e4f77fec1db25e90f9f135b47e710521cad9 (patch)
tree22789f8ccd7a18ab0db52e0f9b78af49be66361b
parent268230ed92890911d565c8b9a21fda629561bff4 (diff)
Fix Script Naxxramas/Kel'thuzad. Thanks tbaart.
Fixe issue #321. - frost blast shall not target MT. --HG-- branch : trunk
-rw-r--r--src/scripts/northrend/naxxramas/boss_kelthuzad.cpp2
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 c7199661acb..ee05b5ef455 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, 0, 0, true))
+ if (Unit *pTarget = SelectTarget(SELECT_TARGET_RANDOM, 1, 0, true))
DoCast(pTarget, SPELL_FROST_BLAST);
if (rand()%2)
DoScriptText(SAY_FROST_BLAST, m_creature);