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 8c87dc044fa..b0586b5c597 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -3815,7 +3815,7 @@ bool Unit::AddAura(Aura *Aur, bool handleEffects) // find current aura from spell and change it's stackamount if (Aura * foundAura = GetAura(aurSpellInfo->Id, Aur->GetCasterGUID())) { - if(foundAura->aurSpellInfo->StackAmount) + if(aurSpellInfo->StackAmount) { uint8 stackAmount = foundAura->GetStackAmount() + 1; if (stackAmount > aurSpellInfo->StackAmount) |