diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index f718fc3e8f7..cce161acaae 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -3818,7 +3818,7 @@ bool Unit::AddAura(Aura *Aur, bool handleEffects) uint8 stackAmount = foundAura->GetStackAmount() + 1; if (stackAmount > aurSpellInfo->StackAmount) stackAmount = aurSpellInfo->StackAmount; - Aur->SetStackAmount(stackAmount); + Aur->SetStackAmount(stackAmount, false); RemoveAura(foundAura, AURA_REMOVE_BY_STACK); return true; } |