diff --git a/Core/src/main/java/com/intellectualcrafters/plot/util/BO3Handler.java b/Core/src/main/java/com/intellectualcrafters/plot/util/BO3Handler.java index 604309166..7ec5f8f0a 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/util/BO3Handler.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/util/BO3Handler.java @@ -251,6 +251,7 @@ public class BO3Handler { try { File bo3File = bo3.getFile(); bo3File.createNewFile(); + bo3File.getParentFile().mkdirs(); try (FileOutputStream fos = new FileOutputStream(bo3File)) { write(fos, plot, bo3); }