mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[c12564] Fix a Typo
This commit is contained in:
parent
75e0ea33b4
commit
a340c67f43
2 changed files with 2 additions and 2 deletions
|
|
@ -3120,7 +3120,7 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
|
|||
if (apply)
|
||||
target->m_AuraFlags |= UNIT_AURAFLAG_ALIVE_INVISIBLE;
|
||||
else
|
||||
target->m_AuraFlags |= ~UNIT_AURAFLAG_ALIVE_INVISIBLE;
|
||||
target->m_AuraFlags &= ~UNIT_AURAFLAG_ALIVE_INVISIBLE;
|
||||
return;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "12564"
|
||||
#define REVISION_NR "12565"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue