diff options
author | Spp <none@none> | 2010-03-09 11:11:10 +0100 |
---|---|---|
committer | Spp <none@none> | 2010-03-09 11:11:10 +0100 |
commit | 8034a6c48ea565345cd769422bb80acf5df015e4 (patch) | |
tree | 41ca28853f2c124a3b6c07b0d917538f80118bcd /src/scripts/outland/netherstorm.cpp | |
parent | c716c0e5e59f5e37f8e46822d77555768f23633a (diff) |
Rename 'Hostil' to 'Hostile'
Credits to NoFantasy (Mangos)
Closes issue #411
--HG--
branch : trunk
Diffstat (limited to 'src/scripts/outland/netherstorm.cpp')
-rw-r--r-- | src/scripts/outland/netherstorm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/outland/netherstorm.cpp b/src/scripts/outland/netherstorm.cpp index 16c4abea69e..25dba020be4 100644 --- a/src/scripts/outland/netherstorm.cpp +++ b/src/scripts/outland/netherstorm.cpp @@ -743,10 +743,10 @@ struct mob_phase_hunterAI : public ScriptedAI // some code to cast spell Mana Burn on random target which has mana if (ManaBurnTimer <= diff) { - std::list<HostilReference*> AggroList = m_creature->getThreatManager().getThreatList(); + std::list<HostileReference*> AggroList = m_creature->getThreatManager().getThreatList(); std::list<Unit*> UnitsWithMana; - for(std::list<HostilReference*>::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())) { |