diff options
| author | click <clickvd@gonnamakeyou.com> | 2011-06-11 22:35:29 +0200 |
|---|---|---|
| committer | click <clickvd@gonnamakeyou.com> | 2011-06-11 22:35:29 +0200 |
| commit | 158966dc793f47dd4ada264da775f647601298aa (patch) | |
| tree | 8fa1dc1cc36d07123662c32eb5981cfac01e91b6 /src/server/scripts/Outland/TempestKeep | |
| parent | 9ef8bd307200445f448a67d1bb26c3afee9b7051 (diff) | |
Core: Codestyle cleanup
Diffstat (limited to 'src/server/scripts/Outland/TempestKeep')
12 files changed, 28 insertions, 28 deletions
diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp index 7eef901f83e..8fa39447198 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp @@ -135,7 +135,7 @@ class boss_alar : public CreatureScript me->setActive(false); } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { if (pInstance) pInstance->SetData(DATA_ALAREVENT, IN_PROGRESS); @@ -145,7 +145,7 @@ class boss_alar : public CreatureScript me->setActive(true); } - void JustDied(Unit * /*victim*/) + void JustDied(Unit* /*victim*/) { if (pInstance) pInstance->SetData(DATA_ALAREVENT, DONE); @@ -158,7 +158,7 @@ class boss_alar : public CreatureScript summon->AI()->AttackStart(pTarget); } - void MoveInLineOfSight(Unit * /*who*/) {} + void MoveInLineOfSight(Unit* /*who*/) {} void AttackStart(Unit* who) { @@ -481,7 +481,7 @@ class mob_ember_of_alar : public CreatureScript { toDie = false; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoZoneInCombat(); } @@ -548,7 +548,7 @@ class mob_flame_patch_alar : public CreatureScript { mob_flame_patch_alarAI(Creature* pCreature) : ScriptedAI(pCreature) {} void Reset() {} - void EnterCombat(Unit * /*who*/) {} + void EnterCombat(Unit* /*who*/) {} void AttackStart(Unit* /*who*/) {} void MoveInLineOfSight(Unit* /*who*/) {} void UpdateAI(const uint32 /*diff*/) {} diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp index d50ac198eff..e894cd2be78 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp @@ -143,12 +143,12 @@ class boss_high_astromancer_solarian : public CreatureScript Summons.DespawnAll(); } - void KilledUnit(Unit * /*victim*/) + void KilledUnit(Unit* /*victim*/) { DoScriptText(RAND(SAY_KILL1, SAY_KILL2, SAY_KILL3), me); } - void JustDied(Unit * /*victim*/) + void JustDied(Unit* /*victim*/) { me->SetFloatValue(OBJECT_FIELD_SCALE_X, defaultsize); me->SetDisplayId(MODEL_HUMAN); @@ -157,7 +157,7 @@ class boss_high_astromancer_solarian : public CreatureScript pInstance->SetData(DATA_HIGHASTROMANCERSOLARIANEVENT, DONE); } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO, me); DoZoneInCombat(); @@ -435,7 +435,7 @@ class mob_solarium_priest : public CreatureScript aoesilenceTimer = 15000; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { } diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp index 95e6a52db2b..5c4f3cb959a 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp @@ -423,7 +423,7 @@ class boss_kaelthas : public CreatureScript } } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { if (m_pInstance && !m_pInstance->GetData(DATA_KAELTHASEVENT) && !Phase) StartEvent(); @@ -1425,9 +1425,9 @@ class mob_kael_flamestrike : public CreatureScript me->setFaction(14); } - void MoveInLineOfSight(Unit * /*who*/) {} + void MoveInLineOfSight(Unit* /*who*/) {} - void EnterCombat(Unit * /*who*/) {} + void EnterCombat(Unit* /*who*/) {} void UpdateAI(const uint32 diff) { diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp index 988524b35f3..e348ac5aab4 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp @@ -80,12 +80,12 @@ class boss_void_reaver : public CreatureScript pInstance->SetData(DATA_VOIDREAVEREVENT, NOT_STARTED); } - void KilledUnit(Unit * /*victim*/) + void KilledUnit(Unit* /*victim*/) { DoScriptText(RAND(SAY_SLAY1, SAY_SLAY2, SAY_SLAY3), me); } - void JustDied(Unit * /*victim*/) + void JustDied(Unit* /*victim*/) { DoScriptText(SAY_DEATH, me); DoZoneInCombat(); @@ -94,7 +94,7 @@ class boss_void_reaver : public CreatureScript pInstance->SetData(DATA_VOIDREAVEREVENT, DONE); } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO, me); diff --git a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp index a0b954870df..12f95fdb4aa 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp @@ -57,7 +57,7 @@ class mob_crystalcore_devastator : public CreatureScript Knockaway_Timer = 25000; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { } diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp index 2b575d2b499..b81b74a7fa9 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp @@ -73,7 +73,7 @@ class boss_gatewatcher_iron_hand : public CreatureScript Stream_of_Machine_Fluid_Timer = 55000; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO_1, me); } diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp index ecaf72d8567..f4eacb9bf3c 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp @@ -93,7 +93,7 @@ class boss_pathaleon_the_calculator : public CreatureScript Counter = 0; summons.DespawnAll(); } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO, me); } diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp index c67e70a8614..57d9cacd5a6 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp @@ -122,14 +122,14 @@ class npc_millhouse_manastorm : public CreatureScript } } - void EnterCombat(Unit * /*who*/){} + void EnterCombat(Unit* /*who*/){} - void KilledUnit(Unit * /*victim*/) + void KilledUnit(Unit* /*victim*/) { DoScriptText(RAND(SAY_KILL_1, SAY_KILL_2), me); } - void JustDied(Unit * /*victim*/) + void JustDied(Unit* /*victim*/) { DoScriptText(SAY_DEATH, me); @@ -328,7 +328,7 @@ class npc_warden_mellichar : public CreatureScript } } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(YELL_INTRO1, me); DoCast(me, SPELL_BUBBLE_VISUAL); diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp index 040b1469130..75a1d3b51a0 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp @@ -110,7 +110,7 @@ class boss_harbinger_skyriss : public CreatureScript ScriptedAI::MoveInLineOfSight(who); } - void EnterCombat(Unit * /*who*/) {} + void EnterCombat(Unit* /*who*/) {} void JustDied(Unit* /*Killer*/) { @@ -294,7 +294,7 @@ class boss_harbinger_skyriss_illusion : public CreatureScript void Reset() { } - void EnterCombat(Unit * /*who*/) { } + void EnterCombat(Unit* /*who*/) { } }; CreatureAI* GetAI(Creature* creature) const diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp index 4d031be1195..56377818eae 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp @@ -80,7 +80,7 @@ class boss_high_botanist_freywinn : public CreatureScript MoveFree = true; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO, me); } diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp index eaaaaec92cd..6e2ba1ad4d7 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp @@ -155,7 +155,7 @@ class boss_laj : public CreatureScript CanSummon = false; } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { } diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp index ac69e21a30b..2fccfd0eddc 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp @@ -86,7 +86,7 @@ class mob_warp_splinter_treant : public CreatureScript check_Timer = 0; } - void EnterCombat(Unit * /*who*/) {} + void EnterCombat(Unit* /*who*/) {} void MoveInLineOfSight(Unit* /*who*/) {} @@ -159,7 +159,7 @@ class boss_warp_splinter : public CreatureScript me->SetSpeed(MOVE_RUN, 0.7f, true); } - void EnterCombat(Unit * /*who*/) + void EnterCombat(Unit* /*who*/) { DoScriptText(SAY_AGGRO, me); } |
