mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 01:15:35 +01:00
*Fix possible bug with sending healing and damage bonuses to client.
--HG-- branch : trunk
This commit is contained in:
@@ -3782,7 +3782,7 @@ bool Unit::AddAura(Aura *Aur)
|
||||
|
||||
bool stackModified=false;
|
||||
// passive and persistent auras can stack with themselves any number of times
|
||||
if (!Aur->IsPassive() && !Aur->IsPersistent() Aur->GeId()!=44413)
|
||||
if (!Aur->IsPassive() && !Aur->IsPersistent() && Aur->GetId()!=44413)
|
||||
{
|
||||
for(AuraMap::iterator i2 = m_Auras.lower_bound(spair); i2 != m_Auras.upper_bound(spair);)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user