diff options
author | teacher <none@none> | 2009-11-28 00:02:53 +0100 |
---|---|---|
committer | teacher <none@none> | 2009-11-28 00:02:53 +0100 |
commit | c99d94201cf4019857fec9cd40c5e7d27f6b3351 (patch) | |
tree | e2e427ffebc0323685885ffa2675376ce953e22a /src | |
parent | cf378b3d0b4f973664cd859fce3f0f74795478a8 (diff) |
Re-enable script for boss Palehoof event, needs DB support. Thank you Manuel.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp b/src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp index 7368a0d7782..64759d62b94 100644 --- a/src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp +++ b/src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp @@ -679,7 +679,7 @@ CreatureAI* GetAI_mob_massive_jormungar(Creature* pCreature) return new mob_massive_jormungarAI (pCreature); } -/* + struct TRINITY_DLL_DECL mob_palehoof_orbAI : public ScriptedAI { mob_palehoof_orbAI(Creature *c) : ScriptedAI(c) @@ -759,7 +759,7 @@ CreatureAI* GetAI_mob_palehoof_orb(Creature* pCreature) return new mob_palehoof_orbAI (pCreature); } -*/ + bool GOHello_palehoof_sphere(Player *pPlayer, GameObject *pGO) { @@ -808,12 +808,12 @@ void AddSC_boss_palehoof() newscript->GetAI = &GetAI_mob_massive_jormungar; newscript->RegisterSelf(); - /* + newscript = new Script; newscript->Name = "mob_palehoof_orb"; newscript->GetAI = &GetAI_mob_palehoof_orb; newscript->RegisterSelf(); - */ + newscript = new Script; newscript->Name = "go_palehoof_sphere"; |