[AFR] Implemented Demilich

This commit is contained in:
Daniel Bomar 2021-07-16 11:00:59 -05:00
parent 77e5a7da2d
commit c08c4bbb36
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 170 additions and 1 deletions

View file

@ -62,7 +62,7 @@ public class SpellCostReductionForEachSourceEffect extends CostModificationEffec
if (reduceManaCosts != null) {
// color reduce
ManaCosts<ManaCost> needReduceMana = new ManaCostsImpl<>();
for (int i = 0; i <= needReduceAmount; i++) {
for (int i = 0; i < needReduceAmount; i++) {
needReduceMana.add(reduceManaCosts.copy());
}
CardUtil.adjustCost((SpellAbility) abilityToModify, needReduceMana, false);