aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.cpp
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2009-03-20 20:46:52 +0100
committerXTZGZoReX <none@none>2009-03-20 20:46:52 +0100
commiteddb72d1eaa21dfff850f7af56c3c59e0442d577 (patch)
tree0f26377096336dd6f056db9f0716961fde69490f /src/game/SpellAuras.cpp
parent2bfa6254cc877043914ebd7a3a3c32e1ab66e187 (diff)
parentad06f05ddbbe1ddd9cde94abf7f47f0e7c17dc13 (diff)
* Merge.
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r--src/game/SpellAuras.cpp8
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;
}
}