From bb415d08f81414d252eecbfa0cd4b2419942f978 Mon Sep 17 00:00:00 2001 From: megamage Date: Wed, 17 Dec 2008 22:07:47 -0600 Subject: *Fix the bug that aura charges cannot be displayed. --HG-- branch : trunk --- src/game/SpellAuras.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); } -- cgit v1.2.3