Fix [LTC] Aragorn, King of Gondor (#10560)

This commit is contained in:
Alexander Novotny 2023-07-03 20:42:03 -07:00 committed by GitHub
parent ca8dc7e23b
commit f5b4c7b251
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -50,7 +50,7 @@ public class CantBlockTargetEffect extends RestrictionEffect {
if (target.getMaxNumberOfTargets() == Integer.MAX_VALUE) {
sb.append("any number of ");
} else if (target.getMaxNumberOfTargets() > 1) {
if (target.getMaxNumberOfTargets() != target.getNumberOfTargets()) {
if (target.getMinNumberOfTargets() == 0) {
sb.append("up to ");
}
sb.append(CardUtil.numberToText(target.getMaxNumberOfTargets())).append(' ');