From 6ee35734e42a97696056fcb0bf684a11ea4e524c Mon Sep 17 00:00:00 2001 From: Gustavo Date: Sun, 28 Aug 2016 20:11:04 -0300 Subject: Whitespace clean-up --- .../Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp | 2 +- src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp | 14 +++++++------- src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp | 10 +++++----- src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src/server/scripts/Northrend') diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp index 0fe4c8144cc..1beb70260ed 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp @@ -268,7 +268,7 @@ class npc_pit_of_saron_icicle : public CreatureScript { DoCastSelf(SPELL_ICICLE_FALL_TRIGGER, true); DoCastSelf(SPELL_ICICLE_FALL_VISUAL); - + if (Unit* caster = ObjectAccessor::GetUnit(*me, _summonerGUID)) caster->RemoveDynObject(SPELL_ICICLE_SUMMON); }); diff --git a/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp index 6ec9af68723..35b56ebb8a9 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp @@ -200,7 +200,7 @@ public: if (zombie) { zombieToBeEatenGUID = zombie->GetGUID(); // save for later use - + // the soon-to-be-eaten zombie should stop moving and stop attacking zombie->AI()->SetData(DATA_ZOMBIE_STATE, STATE_ZOMBIE_TOBE_EATEN); @@ -225,7 +225,7 @@ public: case EVENT_KILL_ZOMBIE_SINGLE: { Creature* zombieToBeEaten = ObjectAccessor::GetCreature(*me, zombieToBeEatenGUID); - if (zombieToBeEaten && zombieToBeEaten->IsAlive() && zombieToBeEaten->IsWithinDistInMap(me, 10.0)) + if (zombieToBeEaten && zombieToBeEaten->IsAlive() && zombieToBeEaten->IsWithinDistInMap(me, 10.0)) DoCast(zombieToBeEaten, SPELL_ZOMBIE_CHOW_SEARCH_SINGLE); // do the killing + healing in done inside by spell script see below. zombieToBeEatenGUID = ObjectGuid::Empty; @@ -249,11 +249,11 @@ public: if (zombie && zombie->IsAlive() && zombie->GetExactDist2d(me) > 18.0) zombie = nullptr; } - + if (zombie) // cast the aoe spell only if at least one zombie is found nearby { Talk(EMOTE_DEVOURS_ALL); - DoCastAOE(SPELL_ZOMBIE_CHOW_SEARCH_MULTI); + DoCastAOE(SPELL_ZOMBIE_CHOW_SEARCH_MULTI); } break; } @@ -269,7 +269,7 @@ public: me->GetMotionMaster()->MoveIdle(); events.ScheduleEvent(EVENT_KILL_ZOMBIE_SINGLE, Seconds(1)); } - + } void DoAction(int32 action) override @@ -432,10 +432,10 @@ public: { me->SetReactState(ReactStates::REACT_PASSIVE); me->AttackStop(); - me->SetTarget(ObjectGuid::Empty); + me->SetTarget(ObjectGuid::Empty); // at this point, the zombie should be non attacking and non moving. - me->SetWalk(true); // it doesnt seem to work with MoveFollow() (but it does work with MovePoint()). + me->SetWalk(true); // it doesnt seem to work with MoveFollow() (but it does work with MovePoint()). timer = 1000; } diff --git a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp index 785048bf50a..cb2a90bcd12 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp @@ -264,7 +264,7 @@ public: _JustDied(); Talk(SAY_DEATH); } - + void DamageTaken(Unit* /*attacker*/, uint32& damage) override { if (events.IsInPhase(PHASE_ONE)) @@ -432,7 +432,7 @@ public: if (Is25ManRaid()) events.ScheduleEvent(EVENT_CHAINS, randtime(Seconds(60), Seconds(80)), 0, PHASE_TWO); break; - + case EVENT_FROSTBOLT_VOLLEY: DoCastAOE(SPELL_FROSTBOLT_VOLLEY); events.Repeat(randtime(Seconds(16), Seconds(18))); @@ -624,7 +624,7 @@ struct npc_kelthuzad_minionAI : public ScriptedAI ScriptedAI::MoveInLineOfSight(who); return; } - + if (me->CanStartAttack(who, false) && me->GetDistance2d(who) <= MINION_AGGRO_DISTANCE) EnterCombat(who); } @@ -641,7 +641,7 @@ struct npc_kelthuzad_minionAI : public ScriptedAI return pocketId; return 0; } - + void MovementInform(uint32 /*type*/, uint32 id) override { if (id == MOVEMENT_MINION_RANDOM) @@ -665,7 +665,7 @@ struct npc_kelthuzad_minionAI : public ScriptedAI protected: InstanceScript* const instance; uint32 pocketId; - + private: uint32 _movementTimer; Position const _home; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp index 0c9a236e196..9b04d63e564 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp @@ -548,7 +548,7 @@ class spell_sapphiron_frost_breath : public SpellScriptLoader toRemove.push_back(target); continue; } - + bool found = false; for (GameObject* block : blocks) if (block->IsInBetween(GetCaster(), target, 2.0f) && GetCaster()->GetExactDist2d(block) + 5 >= GetCaster()->GetExactDist2d(target)) -- cgit v1.2.3