diff options
author | tartalo <none@none> | 2009-12-07 23:10:29 +0100 |
---|---|---|
committer | tartalo <none@none> | 2009-12-07 23:10:29 +0100 |
commit | feea95595355148d09499484a74ea22574748ccf (patch) | |
tree | c46b1cbadb13369533bc4a3e6a1b3d0047715b70 /src | |
parent | 47a9b770225c6bb733265a2af7a37bf1ba3e275b (diff) |
Violet Hold, Boss Cyanigosa: Add transformation spell
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/northrend/violet_hold/boss_cyanigosa.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/northrend/violet_hold/boss_cyanigosa.cpp b/src/bindings/scripts/scripts/northrend/violet_hold/boss_cyanigosa.cpp index 41db8a9a8e8..25ca24cc3d7 100644 --- a/src/bindings/scripts/scripts/northrend/violet_hold/boss_cyanigosa.cpp +++ b/src/bindings/scripts/scripts/northrend/violet_hold/boss_cyanigosa.cpp @@ -21,7 +21,8 @@ enum Spells SPELL_TAIL_SWEEP = 58690, H_SPELL_TAIL_SWEEP = 59283, SPELL_UNCONTROLLABLE_ENERGY = 58688, - H_SPELL_UNCONTROLLABLE_ENERGY = 59281 + H_SPELL_UNCONTROLLABLE_ENERGY = 59281, + SPELL_TRANSFORM = 58668 }; enum Yells @@ -67,6 +68,7 @@ struct TRINITY_DLL_DECL boss_cyanigosaAI : public ScriptedAI void EnterCombat(Unit* who) { DoScriptText(SAY_AGGRO, m_creature); + DoCast(m_creature, SPELL_TRANSFORM); if (pInstance) pInstance->SetData(DATA_CYANIGOSA_EVENT, IN_PROGRESS); |