[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 <vladimir@getmangos.com>
This commit is contained in:
Maxxie 2009-01-17 22:37:28 +01:00 committed by VladimirMangos
parent 41f85080dd
commit 1fa4ecf482
2 changed files with 2 additions and 2 deletions

View file

@ -3818,7 +3818,7 @@ void Aura::HandleModMechanicImmunity(bool apply, bool Real)
uint32 mechanic = 1 << m_modifier.m_miscvalue; uint32 mechanic = 1 << m_modifier.m_miscvalue;
//immune movement impairment and loss of control //immune movement impairment and loss of control
if(GetId()==42292) if(GetId()==42292 || GetId()==59752)
mechanic=IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK; mechanic=IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK;
if(apply && GetSpellProto()->AttributesEx & SPELL_ATTR_EX_DISPEL_AURAS_ON_IMMUNITY) if(apply && GetSpellProto()->AttributesEx & SPELL_ATTR_EX_DISPEL_AURAS_ON_IMMUNITY)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7293" #define REVISION_NR "7294"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__