aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/EasternKingdoms
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2010-08-07 13:46:08 +0200
committerXTZGZoReX <none@none>2010-08-07 13:46:08 +0200
commitbcfc58a72df7ce5aaa14c2bc49ee28f500a8bffb (patch)
tree0763d313e435f421905e038bb11dcaddd4d968e3 /src/server/scripts/EasternKingdoms
parent87483be1e712439550d2e84f9beb1173bf69f12a (diff)
* Script-side changes for my last commit.
--HG-- branch : trunk
Diffstat (limited to 'src/server/scripts/EasternKingdoms')
-rw-r--r--src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp2
-rw-r--r--src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp4
-rw-r--r--src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp2
-rw-r--r--src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp2
-rw-r--r--src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp
index 848d587253a..c724f2de61c 100644
--- a/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp
+++ b/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp
@@ -175,7 +175,7 @@ class mob_av_marshal_or_warmaster : public CreatureScript
}
};
- CreatureAI* OnGetAI(Creature* creature) const
+ CreatureAI* GetAI(Creature* creature) const
{
return new mob_av_marshal_or_warmasterAI(creature);
}
diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp
index d9a796a2915..5f66aaf2883 100644
--- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp
+++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp
@@ -84,7 +84,7 @@ public:
}
};
- CreatureAI *OnGetAI(Creature *creature) const
+ CreatureAI *GetAI(Creature *creature) const
{
return new mob_water_elementalAI(creature);
}
@@ -195,7 +195,7 @@ public:
}
};
- CreatureAI *OnGetAI(Creature *creature) const
+ CreatureAI *GetAI(Creature *creature) const
{
return new boss_balindaAI(creature);
}
diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp
index fed10c619c7..03df3071328 100644
--- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp
+++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp
@@ -129,7 +129,7 @@ public:
};
- CreatureAI *OnGetAI(Creature *creature) const
+ CreatureAI *GetAI(Creature *creature) const
{
return new boss_drektharAI(creature);
}
diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp
index 2c64c9a744a..ec0eadc1e5e 100644
--- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp
+++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp
@@ -120,7 +120,7 @@ public:
}
};
- CreatureAI *OnGetAI(Creature *creature) const
+ CreatureAI *GetAI(Creature *creature) const
{
return new boss_galvangarAI(creature);
}
diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp
index 32cb054558f..1e1ec0d7ccc 100644
--- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp
+++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp
@@ -118,7 +118,7 @@ public:
}
};
- CreatureAI *OnGetAI(Creature *creature) const
+ CreatureAI *GetAI(Creature *creature) const
{
return new boss_vanndarAI(creature);
}