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 81c1e6f388a..a0ad4162064 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4075,7 +4075,7 @@ void Unit::RemoveAura(AuraMap::iterator &i, AuraRemoveMode mode) { Aura* Aur = i->second; //aura can be during update when removing, set it to remove at next update - if (Aur->IsUpdated()) + if (Aur->IsDuringUpdate()) { Aur->RemoveAura(); return; |