Fix dropping foil from card when copying

This commit is contained in:
tool4EvEr
2021-10-28 21:20:45 +02:00
parent 0fd1e9256f
commit 2de6fc476c
16 changed files with 36 additions and 46 deletions

View File

@@ -23,7 +23,7 @@ public class IntegerConstraint {
@Override
public String toString() {
if( min == max ) {
if (min == max) {
return String.valueOf( min );
}
return "between " + min + " and " + max;