[10144] Fix movement impairing effects remove for 65547

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
Insider42 2010-07-03 12:15:32 +03:00 committed by Laise
parent 55542a5219
commit 35bf2a56dd
2 changed files with 2 additions and 2 deletions

View file

@ -4574,7 +4574,7 @@ void Aura::HandleModMechanicImmunity(bool apply, bool /*Real*/)
uint32 mechanic = 1 << (misc-1); uint32 mechanic = 1 << (misc-1);
//immune movement impairment and loss of control //immune movement impairment and loss of control
if(GetId()==42292 || GetId()==59752) if(GetId()==42292 || GetId()==59752 || GetId()==65547)
mechanic=IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK; mechanic=IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK;
target->RemoveAurasAtMechanicImmunity(mechanic,GetId()); target->RemoveAurasAtMechanicImmunity(mechanic,GetId());

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 "10143" #define REVISION_NR "10144"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__