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/EasternKingdoms/undercity.cpp | |
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/EasternKingdoms/undercity.cpp')
-rw-r--r-- | src/server/scripts/EasternKingdoms/undercity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/undercity.cpp b/src/server/scripts/EasternKingdoms/undercity.cpp index 3f088bf00b9..0522e214012 100644 --- a/src/server/scripts/EasternKingdoms/undercity.cpp +++ b/src/server/scripts/EasternKingdoms/undercity.cpp @@ -88,7 +88,7 @@ public: struct npc_lady_sylvanas_windrunnerAI : public ScriptedAI { - npc_lady_sylvanas_windrunnerAI(Creature* c) : ScriptedAI(c) {} + npc_lady_sylvanas_windrunnerAI(Creature* creature) : ScriptedAI(creature) {} uint32 LamentEvent_Timer; bool LamentEvent; @@ -161,7 +161,7 @@ public: struct npc_highborne_lamenterAI : public ScriptedAI { - npc_highborne_lamenterAI(Creature* c) : ScriptedAI(c) {} + npc_highborne_lamenterAI(Creature* creature) : ScriptedAI(creature) {} uint32 EventMove_Timer; uint32 EventCast_Timer; |