diff options
author | click <click@gonnamakeyou.com> | 2011-07-02 23:53:38 +0200 |
---|---|---|
committer | click <click@gonnamakeyou.com> | 2011-07-02 23:53:38 +0200 |
commit | f676585cac5b8b51cfc23bbda669164ad4374f33 (patch) | |
tree | 3afbb7ca335723420185afa3b21b5a179196beb4 /src/server/scripts/EasternKingdoms/hinterlands.cpp | |
parent | f997363c08ad472d4f30375b46b8dfb6ac9cfbb8 (diff) |
Core: Cleaning up hungarian notation - Phase5: pWho -> who
Diffstat (limited to 'src/server/scripts/EasternKingdoms/hinterlands.cpp')
-rw-r--r-- | src/server/scripts/EasternKingdoms/hinterlands.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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; } |