diff options
author | Anubisss <none@none> | 2009-11-25 22:36:23 +0100 |
---|---|---|
committer | Anubisss <none@none> | 2009-11-25 22:36:23 +0100 |
commit | d792107835b10f2018f497ada1e9efe92bae3d67 (patch) | |
tree | cac11f04303f878865c848c7aa020f7f23928d0c /src | |
parent | 4c8ee5597b79b7331d52c7a54cb0a59bc1245e47 (diff) |
*Comment out a script because the mob not exists. Patch by manuel.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp | 7 |
1 files changed, 6 insertions, 1 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 62f941a8eef..7368a0d7782 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,6 +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) @@ -758,6 +759,8 @@ CreatureAI* GetAI_mob_palehoof_orb(Creature* pCreature) return new mob_palehoof_orbAI (pCreature); } +*/ + bool GOHello_palehoof_sphere(Player *pPlayer, GameObject *pGO) { ScriptedInstance *pInstance = pGO->GetInstanceData(); @@ -804,11 +807,13 @@ void AddSC_boss_palehoof() newscript->Name = "mob_massive_jormungar"; 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"; |