From f676585cac5b8b51cfc23bbda669164ad4374f33 Mon Sep 17 00:00:00 2001 From: click Date: Sat, 2 Jul 2011 23:53:38 +0200 Subject: Core: Cleaning up hungarian notation - Phase5: pWho -> who --- src/server/scripts/EasternKingdoms/hinterlands.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/server/scripts/EasternKingdoms/hinterlands.cpp') diff --git a/src/server/scripts/EasternKingdoms/hinterlands.cpp b/src/server/scripts/EasternKingdoms/hinterlands.cpp index e982e27492c..1296a7a6159 100644 --- a/src/server/scripts/EasternKingdoms/hinterlands.cpp +++ b/src/server/scripts/EasternKingdoms/hinterlands.cpp @@ -130,9 +130,9 @@ public: } } - void EnterCombat(Unit* pWho) + void EnterCombat(Unit* who) { - if (pWho->GetEntry() == NPC_MARAUDING_OWL || pWho->GetEntry() == NPC_VILE_AMBUSHER) + if (who->GetEntry() == NPC_MARAUDING_OWL || who->GetEntry() == NPC_VILE_AMBUSHER) return; if (rand()%1) @@ -236,13 +236,13 @@ public: npc_escortAI::JustRespawned(); } - void EnterCombat(Unit* pWho) + void EnterCombat(Unit* who) { if (HasEscortState(STATE_ESCORT_ESCORTING)) { - if (pWho->GetEntry() == NPC_OUTRUNNER && !m_bIsByOutrunner) + if (who->GetEntry() == NPC_OUTRUNNER && !m_bIsByOutrunner) { - DoScriptText(SAY_RIN_BY_OUTRUNNER, pWho); + DoScriptText(SAY_RIN_BY_OUTRUNNER, who); m_bIsByOutrunner = true; } -- cgit v1.2.3