diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 182d661fdde..c93a9dd6a1d 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -3218,10 +3218,7 @@ void Unit::_DeleteAuras() { // remove auras only for non-aoe spells or when chanelled aura is removed // because aoe spells don't require aura on target to continue - { - caster->m_currentSpells[CURRENT_CHANNELED_SPELL]->cancel(); - caster->m_currentSpells[CURRENT_CHANNELED_SPELL]=NULL; - } + caster->m_currentSpells[CURRENT_CHANNELED_SPELL]->cancel(); } if(caster->GetTypeId()==TYPEID_UNIT && ((Creature*)caster)->isTotem() && ((Totem*)caster)->GetTotemType()==TOTEM_STATUE) |