diff options
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 97112095d62..79a87bed293 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2078,6 +2078,14 @@ void Aura::HandleAuraDummy(bool apply, bool Real) caster->CastSpell(m_target, GetModifier()->m_amount, true); return; } + // Focused Magic + if(m_spellProto->Id == 54646) + { + // only on remove by crit + if(caster && m_removeMode == AURA_REMOVE_BY_DEFAULT && GetAuraDuration()>0) + caster->CastSpell(caster,54648, true); + return; + } break; } } |