From 50019b85d5c2d1cb050897f612eebbab048c4c24 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 24 Dec 2018 01:03:49 -0500 Subject: [PATCH] Core/Spells: Update AOE Damage Cap --- Source/Game/Spells/Spell.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } } }