mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +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>();
|
||||
for (Class clazz: classes) {
|
||||
newCards.add(createCard(clazz));
|
||||
for (Class clazz : classes) {
|
||||
if (clazz.getPackage().getName().equals(packageName)) {
|
||||
newCards.add(createCard(clazz));
|
||||
}
|
||||
}
|
||||
return newCards;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue