diff --git a/Source/Game/Spells/Auras/Aura.cs b/Source/Game/Spells/Auras/Aura.cs index fa7149a14..ae16fcaa4 100644 --- a/Source/Game/Spells/Auras/Aura.cs +++ b/Source/Game/Spells/Auras/Aura.cs @@ -934,6 +934,9 @@ namespace Game.Spells if (IsPassive()) return false; + if (GetSpellInfo().IsChanneled()) + return false; + // Check if aura is single target, not only spell info if (GetCasterGUID() != GetOwner().GetGUID() || IsSingleTarget()) if (GetSpellInfo().IsSingleTarget())