From de719b9aa5dbe90f1576e4eac13bda1a2b09d736 Mon Sep 17 00:00:00 2001 From: Sol Date: Sun, 24 Mar 2019 01:43:16 +0000 Subject: [PATCH] There's no such thing as "file1_set" its either "file_set" or "file2_set" --- forge-core/src/main/java/forge/item/PaperToken.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-core/src/main/java/forge/item/PaperToken.java b/forge-core/src/main/java/forge/item/PaperToken.java index 40ab7e6bc73..8fbe41527c4 100644 --- a/forge-core/src/main/java/forge/item/PaperToken.java +++ b/forge-core/src/main/java/forge/item/PaperToken.java @@ -121,7 +121,7 @@ public class PaperToken implements InventoryItemFromSet, IPaperCard { String formatEdition = null == edition || CardEdition.UNKNOWN == edition ? "" : "_" + edition.getCode().toLowerCase(); this.imageFileName.add(String.format("%s%s", imageFileName, formatEdition)); - for(int idx = 1; idx < this.artIndex; idx++) { + for(int idx = 2; idx <= this.artIndex; idx++) { this.imageFileName.add(String.format("%s%d%s", imageFileName, idx, formatEdition)); } }