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/ScarletMonastery | |
| parent | f997363c08ad472d4f30375b46b8dfb6ac9cfbb8 (diff) | |
Core: Cleaning up hungarian notation - Phase5: pWho -> who
Diffstat (limited to 'src/server/scripts/EasternKingdoms/ScarletMonastery')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp index 7c01110b18e..a21b5f00a22 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp @@ -107,7 +107,7 @@ public: } } - void EnterCombat(Unit* /*pWho*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_MO_AGGRO, me); DoCast(me, SPELL_RETRIBUTIONAURA); @@ -157,7 +157,7 @@ public: } } - void SpellHit(Unit* /*pWho*/, const SpellEntry* pSpell) + void SpellHit(Unit* /*who*/, const SpellEntry* pSpell) { //When hit with ressurection say text if (pSpell->Id == SPELL_SCARLETRESURRECTION) @@ -260,15 +260,15 @@ public: m_pInstance->SetData(TYPE_MOGRAINE_AND_WHITE_EVENT, NOT_STARTED); } - void AttackStart(Unit* pWho) + void AttackStart(Unit* who) { if (m_pInstance && m_pInstance->GetData(TYPE_MOGRAINE_AND_WHITE_EVENT) == NOT_STARTED) return; - ScriptedAI::AttackStart(pWho); + ScriptedAI::AttackStart(who); } - void EnterCombat(Unit* /*pWho*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_WH_INTRO, me); } |
