diff options
-rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index e60717ac999..89d19956597 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -3336,6 +3336,8 @@ void AuraEffect::HandleAuraFeatherFall(bool apply, bool Real, bool /*changeAmoun if(apply) { Unit* caster = GetCaster(); + if (!caster || !m_target) + return; if (caster->GetGUID() == m_target->GetGUID()) { |