diff options
author | Gyx <2359980687@qq.com> | 2012-03-14 09:20:36 +0800 |
---|---|---|
committer | Gyx <2359980687@qq.com> | 2012-03-14 09:20:36 +0800 |
commit | e8f414e143d9f716298a18f0c290149d2a154229 (patch) | |
tree | 224939a88c4a700db74c74487ccab106d028ceb5 /src/server/scripts/Examples | |
parent | 1dde22394c880a0839ced6bb70f778340800ec1c (diff) |
Core/Script: Clean-Up in Scripts.
Creature* c -> Creature* creature
Signed-off-by: Gyx <2359980687@qq.com>
Diffstat (limited to 'src/server/scripts/Examples')
-rw-r--r-- | src/server/scripts/Examples/example_creature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Examples/example_creature.cpp b/src/server/scripts/Examples/example_creature.cpp index 412211bd280..7f75a0fb481 100644 --- a/src/server/scripts/Examples/example_creature.cpp +++ b/src/server/scripts/Examples/example_creature.cpp @@ -90,7 +90,7 @@ class example_creature : public CreatureScript { // *** HANDLED FUNCTION *** //This is the constructor, called only once when the Creature is first created - example_creatureAI(Creature* c) : ScriptedAI(c) {} + example_creatureAI(Creature* creature) : ScriptedAI(creature) {} // *** CUSTOM VARIABLES **** //These variables are for use only by this individual script. |