diff options
author | QAston <none@none> | 2009-06-06 13:45:17 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-06 13:45:17 +0200 |
commit | aa468c964a55f592b2b78c1ceb11e633cc49f10a (patch) | |
tree | cb5ff4f9ca824a12d77084eb4a85b7fdce00331c /src/game/SpellAuras.h | |
parent | e6941a4f412a442ca97ef1b454837f74077e5f6c (diff) |
*Fix dash bonus not working in some cases.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.h')
-rw-r--r-- | src/game/SpellAuras.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/SpellAuras.h b/src/game/SpellAuras.h index 9deb25772d4..1a4d0590af7 100644 --- a/src/game/SpellAuras.h +++ b/src/game/SpellAuras.h @@ -350,6 +350,8 @@ class TRINITY_DLL_SPEC AuraEffect bool IsAreaAura() const { return m_isAreaAura; } bool IsPeriodic() const { return m_isPeriodic; } bool IsPersistent() const { return m_isPersistent; } + bool IsApplied() const { return m_isApplied; } + void SetApplied (bool val) {m_isApplied = val; } bool isAffectedOnSpell(SpellEntry const *spell) const; void ApplyModifier(bool apply, bool Real = false, bool changeAmount=false); @@ -392,6 +394,7 @@ class TRINITY_DLL_SPEC AuraEffect bool m_isPeriodic:1; bool m_isAreaAura:1; bool m_isPersistent:1; + bool m_isApplied:1; }; class TRINITY_DLL_SPEC AreaAuraEffect : public AuraEffect |