removed string constructor in SuperTypePredicate

This commit is contained in:
ingmargoudt 2017-04-09 10:50:31 +02:00
parent 8b44327312
commit 813d84274a
87 changed files with 265 additions and 224 deletions

View file

@ -101,7 +101,7 @@ public class CopyTokenFunction implements Function<Token, Card> {
}
target.getSuperType().clear();
for (SuperType type : sourceObj.getSuperType()) {
target.getSuperType().add(type);
target.addSuperType(type);
}
target.getAbilities().clear();