mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
Fix crash in Spell::EffectApplyAura.
Fixes issue #657. --HG-- branch : trunk
This commit is contained in:
@@ -2593,15 +2593,15 @@ void Spell::EffectTeleportUnits(uint32 i)
|
||||
|
||||
void Spell::EffectApplyAura(uint32 i)
|
||||
{
|
||||
if (!m_spellAura)
|
||||
if (!m_spellAura || !unitTarget)
|
||||
return;
|
||||
assert (unitTarget == m_spellAura->GetOwner());
|
||||
assert(unitTarget == m_spellAura->GetOwner());
|
||||
m_spellAura->_ApplyEffectForTargets(i);
|
||||
}
|
||||
|
||||
void Spell::EffectApplyAreaAura(uint32 i)
|
||||
{
|
||||
if (!m_spellAura)
|
||||
if (!m_spellAura || !unitTarget)
|
||||
return;
|
||||
assert (unitTarget == m_spellAura->GetOwner());
|
||||
m_spellAura->_ApplyEffectForTargets(i);
|
||||
|
||||
Reference in New Issue
Block a user