diff options
author | megamage <none@none> | 2008-12-17 22:07:47 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-12-17 22:07:47 -0600 |
commit | bb415d08f81414d252eecbfa0cd4b2419942f978 (patch) | |
tree | a9da4f81d578d91e78d249e80fb977203540f963 /src | |
parent | 76a044e8090bb63ed5fd4e599b0484b9c1cd7e15 (diff) |
*Fix the bug that aura charges cannot be displayed.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index a6667c10c78..8e791020ad8 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1075,7 +1075,8 @@ void Aura::UpdateSlotCounterAndDuration() if(slot >= MAX_AURAS) return; - SetAuraApplication(slot, m_stackAmount-1); + if(!m_procCharges) + SetAuraApplication(slot, m_stackAmount-1); UpdateAuraDuration(); } |