diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java index e1b633a88..80ae1deb4 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java @@ -92,10 +92,6 @@ public class ComponentPresetManager { } this.guiName = yamlConfiguration.getString("title", "&6Plot Components"); - if (!yamlConfiguration.contains("presets")) { - yamlConfiguration.createSection("presets"); - } - if (yamlConfiguration.contains("presets")) { this.presets = yamlConfiguration.getMapList("presets").stream().map(o -> (Map) o) .map(ComponentPreset::deserialize).collect(Collectors.toList());