aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Examples
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2011-07-03 00:28:03 +0200
committerclick <click@gonnamakeyou.com>2011-07-03 00:28:03 +0200
commit1aff85f541240714b80177bc8c2ee68c1814ad39 (patch)
tree9d8ddc159b1ce803089309da0b427303b724aa7a /src/server/scripts/Examples
parent354e5e2bbcd6719a63686601f79a78001d90cb35 (diff)
Core: Cleaning up hungarian notation - Phase8: pSummon -> summon (also did related hits)
Diffstat (limited to 'src/server/scripts/Examples')
-rw-r--r--src/server/scripts/Examples/example_escort.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Examples/example_escort.cpp b/src/server/scripts/Examples/example_escort.cpp
index 5dba76a61ae..fa62563e25d 100644
--- a/src/server/scripts/Examples/example_escort.cpp
+++ b/src/server/scripts/Examples/example_escort.cpp
@@ -69,9 +69,9 @@ class example_escort : public CreatureScript
uint32 m_uiDeathCoilTimer;
uint32 m_uiChatTimer;
- void JustSummoned(Creature* pSummoned)
+ void JustSummoned(Creature* summoned)
{
- pSummoned->AI()->AttackStart(me);
+ summoned->AI()->AttackStart(me);
}
// Pure Virtual Functions (Have to be implemented)