aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.h
diff options
context:
space:
mode:
authorQAston <none@none>2009-06-06 13:45:17 +0200
committerQAston <none@none>2009-06-06 13:45:17 +0200
commitaa468c964a55f592b2b78c1ceb11e633cc49f10a (patch)
treecb5ff4f9ca824a12d77084eb4a85b7fdce00331c /src/game/SpellAuras.h
parente6941a4f412a442ca97ef1b454837f74077e5f6c (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.h3
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