9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 11:09:06 +00:00

getLoadKey instead of getName

This commit is contained in:
CocoTheOwner
2021-08-14 22:50:38 +02:00
parent 474b851275
commit 20d26d4bcd

View File

@@ -364,7 +364,7 @@ public class ProjectManager {
}
public File compilePackage(VolmitSender sender, IrisDimension d, boolean obfuscate, boolean minify) {
return new IrisProject(new File(getWorkspaceFolder(), d.getName())).compilePackage(sender, obfuscate, minify);
return new IrisProject(new File(getWorkspaceFolder(), d.getLoadKey())).compilePackage(sender, obfuscate, minify);
}
public File compilePackage(VolmitSender sender, String d, boolean obfuscate, boolean minify) {