forked from External/mage
text fixes
This commit is contained in:
parent
abd0e4ca8f
commit
88b6f4036f
4 changed files with 8 additions and 6 deletions
|
|
@ -106,7 +106,7 @@ public abstract class TargetImpl implements Target {
|
|||
if (min > 0 && max == Integer.MAX_VALUE) {
|
||||
sb.append(CardUtil.numberToText(min));
|
||||
sb.append(" or more ");
|
||||
} else if (!getTargetName().startsWith("X") && (min != 1 || max != 1)) {
|
||||
} else if (!getTargetName().contains("X") && (min != 1 || max != 1)) {
|
||||
if (min < max && max != Integer.MAX_VALUE) {
|
||||
if (min == 1 && max == 2) {
|
||||
sb.append("one or ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue