small text fix

This commit is contained in:
Ingmar Goudt 2019-01-17 18:22:07 +01:00
parent 7c2f55eda0
commit 8a05db7fd8
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ class SummaryJudgementEffect extends OneShotEffect {
SummaryJudgementEffect() { SummaryJudgementEffect() {
super(Outcome.Benefit); super(Outcome.Benefit);
staticText = "{this} deals 3 damage to target tapped creature." + staticText = "{this} deals 3 damage to target tapped creature." +
"<br><i>Addendum</i> &mdash; f you cast this spell during your main phase, " + "<br><i>Addendum</i> &mdash; If you cast this spell during your main phase, " +
"it deals 5 damage to that creature instead."; "it deals 5 damage to that creature instead.";
} }

View file

@ -25,7 +25,7 @@ public class AfterlifeAbility extends DiesTriggeredAbility {
+ CardUtil.numberToText(tokenCount, "a") + CardUtil.numberToText(tokenCount, "a")
+ " 1/1 white and black Spirit creature token" + " 1/1 white and black Spirit creature token"
+ (tokenCount > 1 ? "s" : "") + (tokenCount > 1 ? "s" : "")
+ " with flying)</i>"; + " with flying.)</i>";
} }
@Override @Override