diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 2 | ||||
-rw-r--r-- | src/game/SpellAuras.cpp | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 1d269cb4753..b7d9865729c 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -16896,7 +16896,7 @@ void Player::RemoveSpellMods(Spell const* spell) if (mod && mod->charges == -1 && (mod->lastAffected == spell || mod->lastAffected==NULL)) { - RemoveAurasDueToSpell(mod->spellId); + RemoveAurasDueToSpell(mod->spellId, AURA_REMOVE_BY_EXPIRE); if (m_spellMods[i].empty()) break; else diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 5c41dc22d9e..5fedc013188 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2438,14 +2438,6 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real) caster->CastSpell(m_target, GetAmount(), true); return; } - // Focused Magic - if(m_spellProto->Id == 54646) - { - // only on remove by crit - if(caster && GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_EXPIRE) - caster->CastSpell(caster,54648, true); - return; - } break; } } |