mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
Merge branch 'token_asterisk_replacement' into 'master'
Replace asterisks with x's for token filenames See merge request core-developers/forge!1272
This commit is contained in:
@@ -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); }
|
||||
|
||||
Reference in New Issue
Block a user