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/Outland/zangarmarsh.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/Outland/zangarmarsh.cpp')
-rw-r--r-- | src/server/scripts/Outland/zangarmarsh.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Outland/zangarmarsh.cpp b/src/server/scripts/Outland/zangarmarsh.cpp index 6d8a47c693e..296c95dcbd7 100644 --- a/src/server/scripts/Outland/zangarmarsh.cpp +++ b/src/server/scripts/Outland/zangarmarsh.cpp @@ -149,9 +149,9 @@ public: struct npc_cooshcooshAI : public ScriptedAI { - npc_cooshcooshAI(Creature* c) : ScriptedAI(c) + npc_cooshcooshAI(Creature* creature) : ScriptedAI(creature) { - m_uiNormFaction = c->getFaction(); + m_uiNormFaction = creature->getFaction(); } uint32 m_uiNormFaction; @@ -317,7 +317,7 @@ public: struct npc_kayra_longmaneAI : public npc_escortAI { - npc_kayra_longmaneAI(Creature* c) : npc_escortAI(c) {} + npc_kayra_longmaneAI(Creature* creature) : npc_escortAI(creature) {} void Reset() { } |