[c12564] Fix a Typo

This commit is contained in:
Schmoozerd 2013-05-31 09:33:09 +01:00 committed by Antz
parent 75e0ea33b4
commit a340c67f43
2 changed files with 2 additions and 2 deletions

View file

@ -3120,7 +3120,7 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
if (apply) if (apply)
target->m_AuraFlags |= UNIT_AURAFLAG_ALIVE_INVISIBLE; target->m_AuraFlags |= UNIT_AURAFLAG_ALIVE_INVISIBLE;
else else
target->m_AuraFlags |= ~UNIT_AURAFLAG_ALIVE_INVISIBLE; target->m_AuraFlags &= ~UNIT_AURAFLAG_ALIVE_INVISIBLE;
return; return;
} }
break; break;

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 "12564" #define REVISION_NR "12565"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__