From ffee7a518e07bd5c884e9678f45f8f8dbb6cb922 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Tue, 21 Apr 2020 09:16:02 +0100 Subject: [PATCH] update default biome to match format WorldEdit accepts. --- Core/src/main/java/com/plotsquared/core/plot/PlotArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java index fcf35b783..8b4cb7e69 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java @@ -381,7 +381,7 @@ public abstract class PlotArea { options.put("mob_spawner_spawning", this.isMobSpawnerSpawning()); options.put("plot.auto_merge", this.isAutoMerge()); options.put("plot.create_signs", this.allowSigns()); - options.put("plot.biome", "FOREST"); + options.put("plot.biome", "minecraft:forest"); options.put("schematic.on_claim", this.isSchematicOnClaim()); options.put("schematic.file", this.getSchematicFile()); options.put("schematic.specify_on_claim", this.isSchematicClaimSpecify());