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 --- .../scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/server/scripts/Outland/GruulsLair') diff --git a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp index 2baacf26553..03133b81e17 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp @@ -339,18 +339,18 @@ public: pInstance->SetData(DATA_MAULGAREVENT, NOT_STARTED); } - void AttackStart(Unit* pWho) + void AttackStart(Unit* who) { - if (!pWho) + if (!who) return; - if (me->Attack(pWho, true)) + if (me->Attack(who, true)) { - me->AddThreat(pWho, 0.0f); - me->SetInCombatWith(pWho); - pWho->SetInCombatWith(me); + me->AddThreat(who, 0.0f); + me->SetInCombatWith(who); + who->SetInCombatWith(me); - me->GetMotionMaster()->MoveChase(pWho, 30.0f); + me->GetMotionMaster()->MoveChase(who, 30.0f); } } -- cgit v1.2.3