diff options
Diffstat (limited to 'src/game/Pet.h')
| -rw-r--r-- | src/game/Pet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/Pet.h b/src/game/Pet.h index 670d4101911..178ebfb131e 100644 --- a/src/game/Pet.h +++ b/src/game/Pet.h @@ -214,6 +214,7 @@ class Pet : public Creature uint64 GetAuraUpdateMask() { return m_auraUpdateMask; } void SetAuraUpdateMask(uint8 slot) { m_auraUpdateMask |= (uint64(1) << slot); } + void UnsetAuraUpdateMask(uint8 slot) { m_auraUpdateMask &= ~(uint64(1) << slot); } void ResetAuraUpdateMask() { m_auraUpdateMask = 0; } DeclinedName const* GetDeclinedNames() const { return m_declinedname; } |
