diff options
| author | QAston <none@none> | 2008-12-27 22:24:29 +0100 |
|---|---|---|
| committer | QAston <none@none> | 2008-12-27 22:24:29 +0100 |
| commit | 231cb0f5a7707017cd37628c389c32e42f24f1fe (patch) | |
| tree | efde6463a533e59ab23d0e21b130abddf0f297b6 /src/game/Player.h | |
| parent | 46bc9c343e04bf42ce7ae6073f862f30cdd7c02d (diff) | |
*Remove aura slot from update fields at aura remove.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Player.h')
| -rw-r--r-- | src/game/Player.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/Player.h b/src/game/Player.h index 9187ca3968d..c97f771190e 100644 --- a/src/game/Player.h +++ b/src/game/Player.h @@ -2069,6 +2069,7 @@ class TRINITY_DLL_SPEC Player : public Unit void SetGroupUpdateFlag(uint32 flag) { m_groupUpdateMask |= flag; } uint64 GetAuraUpdateMask() { return m_auraUpdateMask; } void SetAuraUpdateMask(uint8 slot) { m_auraUpdateMask |= (uint64(1) << slot); } + void UnsetAuraUpdateMask(uint8 slot) { m_auraUpdateMask &= ~(uint64(1) << slot); } Player* GetNextRandomRaidMember(float radius); PartyResult CanUninviteFromGroup() const; |
