Fix #508. MultiMC stores files in ".minecraft" instead

This commit is contained in:
huanghongxun
2019-01-13 16:50:21 +08:00
parent 0fb87f0b1d
commit 481b47bf10

View File

@@ -103,6 +103,7 @@ public final class MultiMCModpackInstallTask extends Task {
}
dependents.add(new ModpackInstallTask<>(zipFile, run, modpack.getEncoding(), "/" + manifest.getName() + "/minecraft", any -> true, config));
dependents.add(new ModpackInstallTask<>(zipFile, run, modpack.getEncoding(), "/" + manifest.getName() + "/.minecraft", any -> true, config));
}
@Override