diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 2baae0220..7969290dd 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -6555,8 +6555,8 @@ namespace Game.Spells if (m_caster.IsTypeId(TypeId.Player)) { int targetAmount = m_UniqueTargetInfo.Count; - if (targetAmount > 10) - m_damage = m_damage * 10 / targetAmount; + if (targetAmount > 20) + m_damage = m_damage * 20 / targetAmount; } } }