diff options
author | megamage <none@none> | 2009-05-23 22:21:26 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-23 22:21:26 -0500 |
commit | 946aa87445b4676eef8b4775426557982e863f8c (patch) | |
tree | 70b4e3d2b3c61c701ae47a2d12d8e9202cb590da /src/game/Spell.cpp | |
parent | af1f0fd419753e9864e55029bf11dce4fb1e85f9 (diff) |
*Store aura::source for all types of aura effect.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 98439997306..b31c31e795c 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1226,7 +1226,7 @@ SpellMissInfo Spell::DoSpellHitOnUnit(Unit *unit, const uint32 effectMask) if (aura_effmask) { Unit * caster = m_originalCaster ? m_originalCaster : m_caster; - Aura * Aur = new Aura(m_spellInfo, aura_effmask, m_currentBasePoints, unit, caster, m_CastItem, m_caster); + Aura * Aur = new Aura(m_spellInfo, aura_effmask, m_currentBasePoints, unit, m_caster, caster, m_CastItem); if (!Aur->IsAreaAura()) { |