diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 8e791020ad8..3d8ec73476b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1075,7 +1075,11 @@ void Aura::UpdateSlotCounterAndDuration() if(slot >= MAX_AURAS) return; - if(!m_procCharges) + // Three possibilities: + // Charge = 0; Stack >= 0 + // Charge = 1; Stack >= 0 + // Charge > 1; Stack = 0 + if(m_procCharges < 2) SetAuraApplication(slot, m_stackAmount-1); UpdateAuraDuration(); |