Core/Spells: Update AOE Damage Cap

This commit is contained in:
hondacrx
2018-12-24 01:03:49 -05:00
parent 0c4bd05dd9
commit 50019b85d5
+2 -2
View File
@@ -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;
}
}
}