diff options
author | QAston <none@none> | 2009-05-23 11:26:08 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-05-23 11:26:08 +0200 |
commit | 73faabbc491e72c4189f15c62546cdecf0f6bd39 (patch) | |
tree | c3fbfd448ba1a17b9697b381962209282201d9fb /src/game/Unit.cpp | |
parent | 4d9bce3270c52d654a9f43da585f138c696d4053 (diff) |
*Fix a crash.
--HG--
branch : trunk
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; } |