Replace asterisks with x's for token filenames

This commit is contained in:
Chris H
2019-01-12 22:55:23 -05:00
parent 53d1716255
commit 3b38547fc9

View File

@@ -100,8 +100,7 @@ public class PaperToken implements InventoryItemFromSet, IPaperCard {
build.add(edition.getCode());
}
// Should future image file names be all lower case? Instead of Up case sets?
return StringUtils.join(build, "_").toLowerCase();
return StringUtils.join(build, "_").replace('*', 'x').toLowerCase();
}
public PaperToken(final CardRules c) { this(c, null, null); }