diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java index c855764fd6..0929a6a8de 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java @@ -439,7 +439,7 @@ public class DownloadPicturesService extends DefaultBoundedRangeModel implements throw new IllegalStateException("Second side card can't have empty name."); } - CardInfo secondSideCard = CardRepository.instance.findCard(card.getSecondSideName()); + CardInfo secondSideCard = CardRepository.instance.findCardWPreferredSet(card.getSecondSideName(), card.getSetCode(), false); if (secondSideCard == null) { throw new IllegalStateException("Can''t find second side card in database: " + card.getSecondSideName()); }