diff options
author | Discover- <amort11@hotmail.com> | 2012-03-13 23:21:32 -0700 |
---|---|---|
committer | Discover- <amort11@hotmail.com> | 2012-03-13 23:21:32 -0700 |
commit | 69c3612cfe50777e6895ec8a8f57e370a5c99c3e (patch) | |
tree | c718d7a9de684ef4593a86e79d09db7cea3d5494 /src/server/scripts/Examples | |
parent | 1dde22394c880a0839ced6bb70f778340800ec1c (diff) | |
parent | 117fbb9010743a0e688b837dd00a35c28fb16f25 (diff) |
Merge pull request #5702 from Gyx/master
Core/Script: Clean-Up in Scripts.
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. |