Fixed MWSDeckImporter to import deck when other setCode is used. (e.g. R instead of 3ED)

This commit is contained in:
Plopman 2015-10-30 20:03:22 +01:00
parent 2153d5ccf5
commit 66733ba260

View file

@ -73,7 +73,8 @@ public class MWSDeckImporter extends DeckImporter {
if (!cards.isEmpty()) {
cardInfo = cards.get(new Random().nextInt(cards.size()));
}
} else {
}
if (cardInfo == null) {
cardInfo = CardRepository.instance.findPreferedCoreExpansionCard(lineName, true);
}