mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 22:15:06 +00:00
case insensitive export fixed
This commit is contained in:
@@ -70,7 +70,7 @@ public class AS3ScriptExporter {
|
||||
int i = 2;
|
||||
do {
|
||||
filePath = Path.combine(parentPath, fileNameWithoutExtension + "_" + i++ + extension);
|
||||
} while (files.contains(filePath.toUpperCase()));
|
||||
} while (files.contains(filePath.toLowerCase()));
|
||||
|
||||
file = new File(filePath);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user