Fix cli still creating a resourcepacks folder instead of the new packs folder on startup

This commit is contained in:
Lukas Rieger (Blue) 2024-06-15 16:01:56 +02:00
parent 8a30bbf5f1
commit c0b967b5ce
No known key found for this signature in database
GPG Key ID: AA33883B1BBA03E6

View File

@ -378,7 +378,7 @@ public static void main(String[] args) {
Logger.global.logInfo("Generated default config files for you, here: " + cli.configFolder.toAbsolutePath().normalize() + "\n");
//create resourcepacks folder
FileHelper.createDirectories(cli.configFolder.resolve( "resourcepacks"));
FileHelper.createDirectories(cli.configFolder.resolve("packs"));
//print help
BlueMapCLI.printHelp();