diff options
Diffstat (limited to 'src/game/Unit.h')
-rw-r--r-- | src/game/Unit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.h b/src/game/Unit.h index c53da84acd1..c3b786f2715 100644 --- a/src/game/Unit.h +++ b/src/game/Unit.h @@ -1384,7 +1384,7 @@ class TRINITY_DLL_SPEC Unit : public WorldObject return &itr->second; return 0; } - void SetVisibleAura(uint8 slot, AuraSlotEntry entry) { m_visibleAuras[slot] = entry; } + AuraSlotEntry * GetVisibleAuraSlot(uint8 slot) { return &m_visibleAuras[slot]; } void RemoveVisibleAura(uint8 slot) { m_visibleAuras.erase(slot); } const uint64& GetAuraUpdateMask() const { return m_auraUpdateMask; } |