Fixed minor rule text bug.

This commit is contained in:
LevelX2 2013-05-11 20:48:20 +02:00
parent caff4ba2fe
commit 1442f6fef5

View file

@ -75,7 +75,7 @@ public class PlayAdditionalLandsControllerEffect extends ContinuousEffectImpl<Pl
StringBuilder sb = new StringBuilder();
sb.append("You may play ").append(Integer.toString(additionalCards))
.append(" additional land").append((additionalCards == 1 ? "" : "s"))
.append(duration == Duration.EndOfTurn ? " this turn" : "on each of your turns");
.append(duration == Duration.EndOfTurn ? " this turn" : " on each of your turns");
staticText = sb.toString();
}