[SNC] various text fixes

This commit is contained in:
Evan Kranzler 2022-04-23 21:28:32 -04:00
parent 62655793da
commit cf885a3312
42 changed files with 91 additions and 65 deletions

View file

@ -57,7 +57,8 @@ public class UntapTargetCost extends CostImpl {
StringBuilder sb = new StringBuilder("untap ");
if (target.getMaxNumberOfTargets() > 1) {
sb.append(CardUtil.numberToText(target.getMaxNumberOfTargets()));
sb.append(target.getTargetName().replace("you control", "s you control"));
sb.append(' ');
sb.append(target.getTargetName().replace(" you control", "s you control"));
} else {
sb.append(CardUtil.addArticle(target.getTargetName()));
}