diff options
-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 4c69d248b7f..267ef583f5e 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -462,7 +462,7 @@ void Unit::RemoveAurasWithInterruptFlags(uint32 flag, uint32 except) if ((aur->GetSpellProto()->AuraInterruptFlags & flag) && (!except || aur->GetId() != except)) { uint32 removedAuras = m_removedAuras.size(); - RemoveAura(aur); + RemoveAura(aur, AURA_REMOVE_BY_EXPIRE); if (removedAuras+1<m_removedAuras.size()) iter=m_interruptableAuras.begin(); } |