From 4635fbc0201846721287a1eb730491262237babd Mon Sep 17 00:00:00 2001 From: Spp Date: Thu, 8 Apr 2010 08:20:08 +0200 Subject: Code Style (game + scripts only): "!=" --> " != " (when needed) " !=" --> " !=" "!= " --> "!= " --HG-- branch : trunk --- src/scripts/northrend/azjol_nerub/ahnkahet/boss_herald_volazj.cpp | 2 +- src/scripts/northrend/utgarde_keep/utgarde_pinnacle/boss_palehoof.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/scripts/northrend') 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()) -- cgit v1.2.3