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/Outland/zangarmarsh.cpp | |
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/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() { } |