From 1fa4ecf48271049e90c9fd7d79ed349f0eb2a1c0 Mon Sep 17 00:00:00 2001 From: Maxxie Date: Sat, 17 Jan 2009 22:37:28 +0100 Subject: [PATCH] [7294] Fix: Spell 59752 now removes all movement impairing effects and all effects which cause loss of control. (cherry picked from commit 2a2167021c751201c6884c336cfe31b881357bef) Signed-off-by: VladimirMangos --- src/game/SpellAuras.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 5b2c1d968..5db2926e8 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -3818,7 +3818,7 @@ void Aura::HandleModMechanicImmunity(bool apply, bool Real) uint32 mechanic = 1 << m_modifier.m_miscvalue; //immune movement impairment and loss of control - if(GetId()==42292) + if(GetId()==42292 || GetId()==59752) mechanic=IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK; if(apply && GetSpellProto()->AttributesEx & SPELL_ATTR_EX_DISPEL_AURAS_ON_IMMUNITY) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index f918ca2e3..71c1b309d 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 "7293" + #define REVISION_NR "7294" #endif // __REVISION_NR_H__