From 17c0ea7020195ac8d47b12457f4fd3d63f15fc8b Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Thu, 7 Jan 2010 16:16:41 +0100 Subject: [PATCH] [9117] Add dummy effect at aura removal for spell 32286 Signed-off-by: NoFantasy --- src/game/SpellAuras.cpp | 7 +++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index ae7d0ffcd..c99fe7317 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2394,6 +2394,13 @@ void Aura::HandleAuraDummy(bool apply, bool Real) m_target->CastSpell(m_target, 28240, true, NULL, this); return; } + case 32286: // Focus Target Visual + { + if (m_removeMode == AURA_REMOVE_BY_DEFAULT) + m_target->CastSpell(m_target, 32301, true, NULL, this); + + return; + } case 36730: // Flame Strike { m_target->CastSpell(m_target, 36731, true, NULL, this); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ac6c1ce89..96e26231a 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9116" + #define REVISION_NR "9117" #endif // __REVISION_NR_H__