mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 10:37:01 +00:00
[8029] Correct show spell charges/stack amount
Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
parent
57ac3bdfef
commit
1526b7aad5
2 changed files with 2 additions and 2 deletions
|
|
@ -1160,7 +1160,7 @@ void Aura::SendAuraUpdate(bool remove)
|
|||
uint8 auraFlags = GetAuraFlags();
|
||||
data << uint8(auraFlags);
|
||||
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))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8028"
|
||||
#define REVISION_NR "8029"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue