mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[minor] rule text update for play additional land effect
This commit is contained in:
parent
bd31c45ef7
commit
c519a1a3a0
1 changed files with 3 additions and 2 deletions
|
@ -73,8 +73,9 @@ public class PlayAdditionalLandsControllerEffect extends ContinuousEffectImpl<Pl
|
|||
|
||||
private void setText() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("You may play ").append(Integer.toString(additionalCards)).append(" additional land").append((additionalCards == 1?"":"s"));
|
||||
sb.append((duration==Duration.EndOfTurn?" this turn":""));
|
||||
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");
|
||||
staticText = sb.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue