1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2026-01-06 15:41:51 +00:00

Don't auto pack

This commit is contained in:
RednedEpic
2023-06-01 22:24:54 -05:00
parent a8249fe2ba
commit 483c7900a6
2 changed files with 10 additions and 7 deletions

View File

@@ -57,7 +57,8 @@ public class Main {
.input(packFile)
.output(Paths.get(packFile.toString().replaceFirst("[.][^.]+$", ".mcpack")))
.converters(Converters.defaultConverters())
.convert();
.convert()
.pack();
} catch (IOException e) {
e.printStackTrace();
}