fix reminder text

This commit is contained in:
xenohedron 2023-11-04 17:59:17 -04:00
parent e122e9d512
commit e27ceec5e8
8 changed files with 10 additions and 9 deletions

View file

@ -53,11 +53,11 @@ public class ScryEffect extends OneShotEffect {
return;
}
if (scryNumber == 1) {
sb.append(". <i>(Look at the top card of your library. You may put that card on the bottom of your library.)</i>");
sb.append(". <i>(Look at the top card of your library. You may put that card on the bottom.)</i>");
} else {
sb.append(". <i>(Look at the top ");
sb.append(CardUtil.numberToText(scryNumber));
sb.append(" cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)</i>");
sb.append(" cards of your library, then put any number of them on the bottom and the rest on top in any order.)</i>");
}
staticText = sb.toString();
}