diff options
Diffstat (limited to 'src/scripts/northrend')
| -rw-r--r-- | src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp | 2 | ||||
| -rw-r--r-- | src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp b/src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp index b5c4981878a..f29b2b75d69 100644 --- a/src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp +++ b/src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp @@ -205,7 +205,7 @@ struct boss_volazjAI : public ScriptedAI Summons.Despawn(summon); // Check if all summons in this phase killed - for (SummonList::const_iterator iter = Summons.begin(); iter!=Summons.end(); ++iter) + for (SummonList::const_iterator iter = Summons.begin(); iter != Summons.end(); ++iter) { if (Creature *visage = Unit::GetCreature(*m_creature, *iter)) { diff --git a/src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp b/src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp index 3c6d4875ae8..d2c0c9cbb7b 100644 --- a/src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp +++ b/src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp @@ -145,7 +145,7 @@ struct boss_palehoofAI : public ScriptedAI void UpdateAI(const uint32 diff) { - if (currentPhase!=PHASE_GORTOK_PALEHOOF) + if (currentPhase != PHASE_GORTOK_PALEHOOF) return; //Return since we have no target if (!UpdateVictim()) |
