aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.h
diff options
context:
space:
mode:
authormegamage <none@none>2009-08-12 21:24:15 -0500
committermegamage <none@none>2009-08-12 21:24:15 -0500
commit5cd6c7c4f71711ecf5b9eb4b7cff9b7c6156fee8 (patch)
tree0c5f8a2e0934d2c7248977348c56995848bc68ad /src/game/SpellAuras.h
parent32e960d5bc75fe8dfac2bb902c470d8904210924 (diff)
*Implement m_AurasUpdateIterator. [8329] Author: VladimirMangos
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellAuras.h')
-rw-r--r--src/game/SpellAuras.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/game/SpellAuras.h b/src/game/SpellAuras.h
index 3c0f902792d..9c3b170a04c 100644
--- a/src/game/SpellAuras.h
+++ b/src/game/SpellAuras.h
@@ -102,9 +102,7 @@ class TRINITY_DLL_SPEC Aura
bool IsDeathPersistent() const { return m_isDeathPersist; }
bool IsRemovedOnShapeLost() const { return m_isRemovedOnShapeLost; }
bool CanBeSaved() const;
- bool IsUpdated() const { return m_updated; }
bool IsRemoved() const { return m_isRemoved; }
- void SetUpdated(bool val) { m_updated = val; }
bool IsPersistent() const;
bool IsAreaAura() const;
@@ -163,7 +161,6 @@ class TRINITY_DLL_SPEC Aura
bool m_positive:1;
bool m_permanent:1;
bool m_isRemoved:1;
- bool m_updated:1; // Prevent remove aura by stack if set
bool m_isSingleTargetAura:1; // true if it's a single target spell and registered at caster - can change at spell steal for example
bool IsVisible() const;