diff options
author | maximius <none@none> | 2009-10-02 02:40:35 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-02 02:40:35 -0700 |
commit | a73b03b7ea7ee7e217299f7938fb2bd80571f876 (patch) | |
tree | 7401d73edcc753f9ec0d1d34f284ca622db15d0b /src/game/SpellAuras.h | |
parent | 2b555a1ab962025b83661d14fabba234a20838a7 (diff) |
*New SQL to fix broken data blobs, if any. Must be run manually.
*Cleanup, fix some typos, and fix the final heal of Lifebloom. Thanks ogeraisi.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.h')
-rw-r--r-- | src/game/SpellAuras.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.h b/src/game/SpellAuras.h index 4fe680f26fc..73ac324a5a4 100644 --- a/src/game/SpellAuras.h +++ b/src/game/SpellAuras.h @@ -83,7 +83,7 @@ class TRINITY_DLL_SPEC Aura void SetProcDamage(uint32 val) { m_procDamage = val; } uint32 GetProcDamage() const { return m_procDamage; } - int8 GetStackAmount() const {return m_stackAmount;} + uint8 GetStackAmount() const { return m_stackAmount; } void SetStackAmount(uint8 num, bool applied = true); bool modStackAmount(int32 num); // return true if last charge dropped @@ -154,7 +154,7 @@ class TRINITY_DLL_SPEC Aura uint8 m_auraFlags; // Aura info flag (for send data to client) uint8 m_auraLevel; // Aura level (store caster level for correct show level dep amount) uint8 m_procCharges; // Aura charges (0 for infinite) - uint8 m_stackAmount; // Aura stack amount + AuraEffect * m_partAuras[3]; uint32 m_procDamage; // used in aura proc code |