There's no such thing as "file1_set" its either "file_set" or "file2_set"

This commit is contained in:
Sol
2019-03-24 01:43:16 +00:00
parent 190a56181e
commit de719b9aa5

View File

@@ -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));
}
}