aboutsummaryrefslogtreecommitdiff
path: root/src/scripts/outland/netherstorm.cpp
diff options
context:
space:
mode:
authorSpp <none@none>2010-04-07 19:12:44 +0200
committerSpp <none@none>2010-04-07 19:12:44 +0200
commit182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (patch)
treeeaad3fb4d60703db8df6a94a197321c7125f58ef /src/scripts/outland/netherstorm.cpp
parentb27ce42704c33e292bda390265bb8fd01a433505 (diff)
Code style (game + scripts only):
"for(" --> "for (" --HG-- branch : trunk
Diffstat (limited to 'src/scripts/outland/netherstorm.cpp')
-rw-r--r--src/scripts/outland/netherstorm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/outland/netherstorm.cpp b/src/scripts/outland/netherstorm.cpp
index 992a4f2dc85..6e339890707 100644
--- a/src/scripts/outland/netherstorm.cpp
+++ b/src/scripts/outland/netherstorm.cpp
@@ -746,7 +746,7 @@ struct mob_phase_hunterAI : public ScriptedAI
std::list<HostileReference*> AggroList = m_creature->getThreatManager().getThreatList();
std::list<Unit*> UnitsWithMana;
- for(std::list<HostileReference*>::const_iterator itr = AggroList.begin(); itr != AggroList.end(); ++itr)
+ for (std::list<HostileReference*>::const_iterator itr = AggroList.begin(); itr != AggroList.end(); ++itr)
{
if(Unit *pUnit = Unit::GetUnit(*m_creature, (*itr)->getUnitGuid()))
{