diff options
author | azazel <none@none> | 2010-08-08 22:54:58 +0600 |
---|---|---|
committer | azazel <none@none> | 2010-08-08 22:54:58 +0600 |
commit | 590199d8e17405a0717eaf2e2d39f0d671b6f844 (patch) | |
tree | 36755767c89c4639c7cb0e2f31d8a99f53bb8cf5 /src/server/scripts/Examples | |
parent | 8a69e50d6aff8ea75100a1fb660deecf03b3ea07 (diff) |
* Rename InstanceData to InstanceScript
* Rename *mgr to their new names in scripts project
* Mass convert all the scripts (NEEDS THOROUGH TESTING, because it was done automatically) Please, report bugs on issue tracker.
--HG--
branch : trunk
rename : src/server/game/Instances/InstanceData.cpp => src/server/game/Instances/InstanceScript.cpp
rename : src/server/game/Instances/InstanceData.h => src/server/game/Instances/InstanceScript.h
Diffstat (limited to 'src/server/scripts/Examples')
-rw-r--r-- | src/server/scripts/Examples/example_escort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Examples/example_escort.cpp b/src/server/scripts/Examples/example_escort.cpp index 2def7fa7770..50961744d3b 100644 --- a/src/server/scripts/Examples/example_escort.cpp +++ b/src/server/scripts/Examples/example_escort.cpp @@ -199,7 +199,7 @@ class example_escort : public CreatureScript bool OnGossipSelect(Player* player, Creature* creature, uint32 sender, uint32 action) { - npc_escortAI* pEscortAI = CAST_AI(example_escortAI, creature->AI()); + npc_escortAI* pEscortAI = CAST_AI(example_escort::example_escortAI, creature->AI()); switch(action) { |