From dc2128a5034fe0caee733fecf023c0d26cea2457 Mon Sep 17 00:00:00 2001 From: megamage Date: Tue, 16 Jun 2009 11:26:58 -0500 Subject: [8029] Correct show spell charges/stack amount Author: DiSlord --HG-- branch : trunk --- src/game/SpellAuras.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 75278467a31..520d1bd87ef 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -960,7 +960,7 @@ void Aura::SendAuraUpdate() data << uint32(GetId()); data << uint8(m_auraFlags); data << uint8(m_auraLevel); - data << uint8(m_stackAmount>1 ? m_stackAmount : m_procCharges); + data << uint8(m_stackAmount > 1 ? (m_procCharges > 1 ? m_stackAmount * m_procCharges : m_stackAmount) : m_procCharges); if(!(m_auraFlags & AFLAG_CASTER)) { -- cgit v1.2.3