aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.h
diff options
context:
space:
mode:
authorQAston <none@none>2009-06-12 11:59:58 +0200
committerQAston <none@none>2009-06-12 11:59:58 +0200
commitf7c50a6f01042e401e7dee664d140857d42b7fa5 (patch)
tree3a19a6a0e63c13c1e2a0630cd85ac8c757ea6fba /src/game/SpellAuras.h
parent87fdc76117683190ba47baad62829e76ffd3448c (diff)
*Apply 6 second rule for drinking in arenas.
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellAuras.h')
-rw-r--r--src/game/SpellAuras.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.h b/src/game/SpellAuras.h
index db99660b0ec..36f576b89fe 100644
--- a/src/game/SpellAuras.h
+++ b/src/game/SpellAuras.h
@@ -69,7 +69,7 @@ class TRINITY_DLL_SPEC Aura
void SetAuraMaxDuration(int32 duration) { m_maxduration = duration; }
int32 GetAuraDuration() const { return m_duration; }
void SetAuraDuration(int32 duration, bool withMods = false);
- void RefreshAura() { SetAuraDuration(m_maxduration); }
+ void RefreshAura() { SetAuraDuration(m_maxduration);}
bool IsExpired() const { return !GetAuraDuration() && !(IsPermanent() || IsPassive()); }
void SendAuraUpdate();