diff options
author | megamage <none@none> | 2009-02-21 11:38:59 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-21 11:38:59 -0600 |
commit | 316a8ca8d37cf9c9f7e21455d52fd59dc60e7ca8 (patch) | |
tree | d62175969d5fd9decb52e98488993e30d33f8901 /src/game/Unit.cpp | |
parent | d92a3b3c5b5c39754b54966d72ba69de89ae130a (diff) |
*Fix a typo. By QAston.
--HG--
branch : trunk
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 61339c2062c..9227fe47c66 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4119,7 +4119,7 @@ void Unit::RemoveAura(AuraMap::iterator &i, AuraRemoveMode mode) // Statue unsummoned at aura remove Totem* statue = NULL; bool channeled = false; - if(!Aur->GetAuraDuration() && IsChanneledSpell(AurSpellInfo)) + if(Aur->GetAuraDuration() && IsChanneledSpell(AurSpellInfo)) { if(!caster) // can be already located for IsSingleTargetSpell case caster = Aur->GetCaster(); |