diff --git a/src/fmllauncher/java/net/minecraftforge/fml/loading/FileUtils.java b/src/fmllauncher/java/net/minecraftforge/fml/loading/FileUtils.java index 94027f0a4..fb999d121 100644 --- a/src/fmllauncher/java/net/minecraftforge/fml/loading/FileUtils.java +++ b/src/fmllauncher/java/net/minecraftforge/fml/loading/FileUtils.java @@ -38,7 +38,7 @@ public class FileUtils { LOGGER.debug(CORE,"Making {} directory : {}", dirLabel, dirPath); try { - Files.createDirectory(dirPath); + Files.createDirectories(dirPath); } catch (IOException e) { if (e instanceof FileAlreadyExistsException) { LOGGER.fatal(CORE,"Failed to create {} directory - there is a file in the way", dirLabel);