diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp | 2 | ||||
-rw-r--r-- | src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp b/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp index 7ad8ccaca9b..e35f5551571 100644 --- a/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp +++ b/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp @@ -1271,7 +1271,7 @@ void AddSC_blackrock_depths() newscript->RegisterSelf(); newscript = new Script; - newscript->Name="phalanx"; + newscript->Name="mob_phalanx"; newscript->GetAI = &GetAI_mob_phalanx; newscript->RegisterSelf(); diff --git a/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp b/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp index 4cbe59aabb5..f1b94c7422b 100644 --- a/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp +++ b/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp @@ -404,10 +404,11 @@ void AddSC_boss_terestian_illhoof() newscript->GetAI = &GetAI_boss_terestian_illhoof; newscript->RegisterSelf(); - newscript = new Script; - newscript->Name="mob_karazhan_imp"; - newscript->GetAI = &GetAI_mob_karazhan_imp; - newscript->RegisterSelf(); + //Who can find out what is this for + //newscript = new Script; + //newscript->Name="mob_karazhan_imp"; + //newscript->GetAI = &GetAI_mob_karazhan_imp; + //newscript->RegisterSelf(); newscript = new Script; newscript->Name="mob_kilrek"; |