more "this spell" errata

This commit is contained in:
Evan Kranzler 2018-04-21 18:24:07 -04:00
parent 0b03744573
commit 2dcc50d592
8 changed files with 9 additions and 9 deletions

View file

@ -228,7 +228,7 @@ public class AlternativeCostSourceAbility extends StaticAbility implements Alter
if (condition != null) {
sb.append(condition.toString());
if (alternateCosts.size() > 1) {
sb.append(", rather than pay {source}'s mana cost, ");
sb.append(", rather than pay this spell's mana cost, ");
} else {
sb.append(", you may ");
}
@ -254,7 +254,7 @@ public class AlternativeCostSourceAbility extends StaticAbility implements Alter
++numberCosts;
}
if (condition == null || alternateCosts.size() == 1) {
sb.append(" rather than pay {source}'s mana cost");
sb.append(" rather than pay this spell's mana cost");
} else if (alternateCosts.isEmpty()) {
sb.append("cast {this} without paying its mana cost");
}