diff options
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 935b85e3384..a41445e0e13 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -692,7 +692,7 @@ bool Aura::ModStackAmount(int32 num) int32 stackAmount = m_stackAmount + num; if (stackAmount > m_spellProto->StackAmount) stackAmount = m_spellProto->StackAmount; - else if (stackAmount <=0) // Last aura from stack removed + else if (stackAmount <= 0) // Last aura from stack removed { m_stackAmount = 0; return true; // need remove aura |