Fix a grammar error

This commit is contained in:
LoneFox 2015-12-31 21:56:19 +02:00
parent b18f40a778
commit b80a7a1446

View file

@ -55,7 +55,7 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
staticText = new StringBuilder("Target player draws ")
.append(cardsToDraw == 1?"a": CardUtil.numberToText(cardsToDraw))
.append(" card").append(cardsToDraw == 1?" ": "s")
.append(", then discard ")
.append(", then discards ")
.append(cardsToDiscard == 1?"a": CardUtil.numberToText(cardsToDiscard))
.append(" card").append(cardsToDiscard == 1?" ": "s").toString();
}