[8029] Correct show spell charges/stack amount

Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
DiSlord 2009-06-16 17:35:41 +04:00
parent 57ac3bdfef
commit 1526b7aad5
2 changed files with 2 additions and 2 deletions

View file

@ -1160,7 +1160,7 @@ void Aura::SendAuraUpdate(bool remove)
uint8 auraFlags = GetAuraFlags(); uint8 auraFlags = GetAuraFlags();
data << uint8(auraFlags); data << uint8(auraFlags);
data << uint8(GetAuraLevel()); data << uint8(GetAuraLevel());
data << uint8(m_procCharges ? m_procCharges : m_stackAmount); data << uint8(m_procCharges ? m_procCharges*m_stackAmount : m_stackAmount);
if(!(auraFlags & AFLAG_NOT_CASTER)) if(!(auraFlags & AFLAG_NOT_CASTER))
{ {

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8028" #define REVISION_NR "8029"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__