From db045c40adba23ae54674351466e81cc2a7cb117 Mon Sep 17 00:00:00 2001 From: click Date: Sat, 2 Jul 2011 23:58:05 +0200 Subject: Core: Cleaning up hungarian notation - Phase5: pKiller -> killer --- src/server/scripts/Examples/example_escort.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/scripts/Examples') diff --git a/src/server/scripts/Examples/example_escort.cpp b/src/server/scripts/Examples/example_escort.cpp index 1c0d97d60f3..5dba76a61ae 100644 --- a/src/server/scripts/Examples/example_escort.cpp +++ b/src/server/scripts/Examples/example_escort.cpp @@ -115,14 +115,14 @@ class example_escort : public CreatureScript m_uiChatTimer = 4000; } - void JustDied(Unit* pKiller) + void JustDied(Unit* killer) { if (HasEscortState(STATE_ESCORT_ESCORTING)) { if (Player* player = GetPlayerForEscort()) { // not a likely case, code here for the sake of example - if (pKiller == me) + if (killer == me) { DoScriptText(SAY_DEATH_1, me, player); } -- cgit v1.2.3