diff options
author | Rat <none@none> | 2009-11-02 18:58:45 +0100 |
---|---|---|
committer | Rat <none@none> | 2009-11-02 18:58:45 +0100 |
commit | ae2a36d13e32e7aae945c8cc1862b340f4669744 (patch) | |
tree | 47c84316abaac322fd8160a63cffc2c78468509f | |
parent | 94a2abff6173dc47107e584e53732b0ffbbf3546 (diff) |
*TK:Eye, Kael's flamestrike should not follow players
--HG--
branch : trunk
-rw-r--r-- | src/bindings/scripts/scripts/outland/tempest_keep/the_eye/boss_kaelthas.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bindings/scripts/scripts/outland/tempest_keep/the_eye/boss_kaelthas.cpp b/src/bindings/scripts/scripts/outland/tempest_keep/the_eye/boss_kaelthas.cpp index e6329c0fd68..90cd4745a23 100644 --- a/src/bindings/scripts/scripts/outland/tempest_keep/the_eye/boss_kaelthas.cpp +++ b/src/bindings/scripts/scripts/outland/tempest_keep/the_eye/boss_kaelthas.cpp @@ -1285,9 +1285,9 @@ struct TRINITY_DLL_DECL boss_master_engineer_telonicusAI : public advisorbase_ai }; //Flame Strike AI -struct TRINITY_DLL_DECL mob_kael_flamestrikeAI : public ScriptedAI +struct TRINITY_DLL_DECL mob_kael_flamestrikeAI : public Scripted_NoMovementAI { - mob_kael_flamestrikeAI(Creature* pCreature) : ScriptedAI(pCreature) {} + mob_kael_flamestrikeAI(Creature* pCreature) : Scripted_NoMovementAI(pCreature) {} uint32 Timer; bool Casting; @@ -1305,6 +1305,8 @@ struct TRINITY_DLL_DECL mob_kael_flamestrikeAI : public ScriptedAI void MoveInLineOfSight(Unit *who) {} + void EnterCombat(Unit *who) {return;} + void UpdateAI(const uint32 diff) { if (!Casting) |