aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuras.h
diff options
context:
space:
mode:
authormegamage <none@none>2009-08-11 18:26:04 -0500
committermegamage <none@none>2009-08-11 18:26:04 -0500
commit978242da3f5deb4ee4bc0e6e3124bf2c66c405d1 (patch)
treeacf6ff21793761887e0792f4a101e3b25562a52b /src/game/SpellAuras.h
parent3078bf6fd0be0af62566cd08dddaebd310610be4 (diff)
*Try to fix a crash caused by single target auras. Thanks to QAston.
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellAuras.h')
-rw-r--r--src/game/SpellAuras.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/SpellAuras.h b/src/game/SpellAuras.h
index e05e255b412..c1756a0429f 100644
--- a/src/game/SpellAuras.h
+++ b/src/game/SpellAuras.h
@@ -101,6 +101,7 @@ class TRINITY_DLL_SPEC Aura
bool IsPassive() const { return m_isPassive; }
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; }