mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix a grammar error
This commit is contained in:
parent
b18f40a778
commit
b80a7a1446
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
|
||||||
staticText = new StringBuilder("Target player draws ")
|
staticText = new StringBuilder("Target player draws ")
|
||||||
.append(cardsToDraw == 1?"a": CardUtil.numberToText(cardsToDraw))
|
.append(cardsToDraw == 1?"a": CardUtil.numberToText(cardsToDraw))
|
||||||
.append(" card").append(cardsToDraw == 1?" ": "s")
|
.append(" card").append(cardsToDraw == 1?" ": "s")
|
||||||
.append(", then discard ")
|
.append(", then discards ")
|
||||||
.append(cardsToDiscard == 1?"a": CardUtil.numberToText(cardsToDiscard))
|
.append(cardsToDiscard == 1?"a": CardUtil.numberToText(cardsToDiscard))
|
||||||
.append(" card").append(cardsToDiscard == 1?" ": "s").toString();
|
.append(" card").append(cardsToDiscard == 1?" ": "s").toString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue