mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Update
This commit is contained in:
@@ -118,9 +118,9 @@ public final class ImageKeys {
|
|||||||
}
|
}
|
||||||
//if an image, like phenomenon or planes is missing .full in their filenames but you have an existing images that have .full/.fullborder
|
//if an image, like phenomenon or planes is missing .full in their filenames but you have an existing images that have .full/.fullborder
|
||||||
if (!filename.contains(".full")) {
|
if (!filename.contains(".full")) {
|
||||||
file = findFile(dir, filename+".full");
|
file = findFile(dir, TextUtil.addSuffix(filename,".full"));
|
||||||
if (file != null) { return file; }
|
if (file != null) { return file; }
|
||||||
file = findFile(dir, filename+".fullborder");
|
file = findFile(dir, TextUtil.addSuffix(filename,".fullborder"));
|
||||||
if (file != null) { return file; }
|
if (file != null) { return file; }
|
||||||
}
|
}
|
||||||
// some S00 cards are really part of 6ED
|
// some S00 cards are really part of 6ED
|
||||||
|
|||||||
Reference in New Issue
Block a user