aboutsummaryrefslogtreecommitdiff
path: root/src/game/Spell.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-07-28 21:34:18 +0200
committerQAston <none@none>2009-07-28 21:34:18 +0200
commitc15c25aca40d30b9ac978f3f6476dc52fa6ff94b (patch)
treef9d8df65afa21221b3be1d52f23891b8b6a5dc3d /src/game/Spell.cpp
parentcf0d8a2b035a60ed0fc9a70df8d2d4d9b3a598ea (diff)
*Cleanups and Fixes in Mirror Image script.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r--src/game/Spell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp
index e6af34e9429..f4e992b6a7b 100644
--- a/src/game/Spell.cpp
+++ b/src/game/Spell.cpp
@@ -1296,7 +1296,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);
+ m_caster->SetInCombatState(unit->GetCombatTimer() > 0, unit);
unit->getHostilRefManager().threatAssist(m_caster, 0.0f);
}
}