mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Issue 72
This commit is contained in:
parent
bf070098f7
commit
8e1d82dce6
1 changed files with 4 additions and 2 deletions
|
@ -208,8 +208,10 @@ public abstract class ExpansionSet implements Serializable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
List<Card> newCards = new ArrayList<Card>();
|
List<Card> newCards = new ArrayList<Card>();
|
||||||
for (Class clazz: classes) {
|
for (Class clazz : classes) {
|
||||||
newCards.add(createCard(clazz));
|
if (clazz.getPackage().getName().equals(packageName)) {
|
||||||
|
newCards.add(createCard(clazz));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return newCards;
|
return newCards;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue