diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index c03ffc3a6..1486aa624 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -1866,7 +1866,7 @@ namespace Game.Spells public long GetUnitTargetCountForEffect(uint effect) { - return m_UniqueTargetInfo.Count(targetInfo => targetInfo.MissCondition == SpellMissInfo.Miss && (targetInfo.EffectMask & (1 << (int)effect)) != 0); + return m_UniqueTargetInfo.Count(targetInfo => targetInfo.MissCondition == SpellMissInfo.None && (targetInfo.EffectMask & (1 << (int)effect)) != 0); } public long GetGameObjectTargetCountForEffect(uint effect)