[CLB] various text fixes

This commit is contained in:
Evan Kranzler 2022-06-07 08:39:27 -04:00
parent e418ab04be
commit 81c8d4e28f
7 changed files with 9 additions and 8 deletions

View file

@ -21,6 +21,6 @@ public enum RevoltCondition implements Condition {
@Override
public String toString() {
return "a permanent you control left the battlefield this turn";
return "a permanent you controlled left the battlefield this turn";
}
}

View file

@ -33,7 +33,7 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
.append(CardUtil.numberToText(cardsToDiscard, "a"))
.append(" card")
.append(cardsToDiscard > 1 ? "s" : "")
.append(random ? "at random" : "")
.append(random ? " at random" : "")
.toString();
}