From 7800f62b700b40cfbbf36653e2d1f23d93e44d5e Mon Sep 17 00:00:00 2001 From: magenoxx Date: Fri, 4 Oct 2013 11:34:04 +0400 Subject: [PATCH] Downloading all token images even if Type 2 only is chosen. --- .../java/org/mage/plugins/card/images/DownloadPictures.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPictures.java b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPictures.java index ade674de088..8889eddd3a6 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPictures.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPictures.java @@ -174,7 +174,7 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab if (checkBox.isSelected()) { DownloadPictures.this.type2cards = new ArrayList(); for (CardDownloadData data : DownloadPictures.this.cards) { - if (data.isType2()) { + if (data.isType2() || data.isToken()) { DownloadPictures.this.type2cards.add(data); } }