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/game/Spell.cpp | |
parent | c716c0e5e59f5e37f8e46822d77555768f23633a (diff) |
Rename 'Hostil' to 'Hostile'
Credits to NoFantasy (Mangos)
Closes issue #411
--HG--
branch : trunk
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index edf53a56b49..f0c5acc48eb 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1160,7 +1160,7 @@ void Spell::DoAllEffectOnTarget(TargetInfo *target) caster->ProcDamageAndSpell(unitTarget, procAttacker, procVictim, procEx, addhealth, m_attackType, m_spellInfo, m_triggeredByAuraSpell); int32 gain = caster->DealHeal(unitTarget, addhealth, m_spellInfo, crit); - unitTarget->getHostilRefManager().threatAssist(caster, float(gain) * 0.5f, m_spellInfo); + unitTarget->getHostileRefManager().threatAssist(caster, float(gain) * 0.5f, m_spellInfo); } // Do damage and triggers else if (m_damage > 0) @@ -1325,7 +1325,7 @@ SpellMissInfo Spell::DoSpellHitOnUnit(Unit *unit, const uint32 effectMask, bool if( unit->isInCombat() && !(m_spellInfo->AttributesEx3 & SPELL_ATTR_EX3_NO_INITIAL_AGGRO) ) { m_caster->SetInCombatState(unit->GetCombatTimer() > 0, unit); - unit->getHostilRefManager().threatAssist(m_caster, 0.0f); + unit->getHostileRefManager().threatAssist(m_caster, 0.0f); } } } |