mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed minor rule text bug.
This commit is contained in:
parent
caff4ba2fe
commit
1442f6fef5
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ public class PlayAdditionalLandsControllerEffect extends ContinuousEffectImpl<Pl
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("You may play ").append(Integer.toString(additionalCards))
|
sb.append("You may play ").append(Integer.toString(additionalCards))
|
||||||
.append(" additional land").append((additionalCards == 1 ? "" : "s"))
|
.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();
|
staticText = sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue