From d97133571a5b16cd320bc63b45b4715c8614ce27 Mon Sep 17 00:00:00 2001 From: megamage Date: Thu, 18 Dec 2008 09:51:45 -0600 Subject: *Fix the display of aura charge/stack. --HG-- branch : trunk --- src/game/SpellAuras.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') 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(); -- cgit v1.2.3