aboutsummaryrefslogtreecommitdiff
path: root/src/scripts/outland/netherstorm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/outland/netherstorm.cpp')
-rw-r--r--src/scripts/outland/netherstorm.cpp4
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()))
{