From e795b5d12fa5b19f4aba461395a195f3c46c955a Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sun, 27 Mar 2022 16:25:51 +1100 Subject: [PATCH] #737: Update WorldCreator#generatorSettings docs By: Martoph --- paper-api/src/main/java/org/bukkit/WorldCreator.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/WorldCreator.java b/paper-api/src/main/java/org/bukkit/WorldCreator.java index 60bed20c28..cbe6b3a1ba 100644 --- a/paper-api/src/main/java/org/bukkit/WorldCreator.java +++ b/paper-api/src/main/java/org/bukkit/WorldCreator.java @@ -314,11 +314,9 @@ public class WorldCreator { * Sets the generator settings of the world that will be created or loaded. *

* Currently only {@link WorldType#FLAT} uses these settings, and expects - * them to be in JSON format with a valid biome AND structures (1.16 and - * above) defined. Note the occurrence of "structures" twice (nested - * compound may be empty, both must exist.). An example valid configuration - * is as follows: - * {"structures": {"structures": {"village": {"salt": 8015723, "spacing": 32, "separation": 8}}}, "layers": [{"block": "stone", "height": 1}, {"block": "grass", "height": 1}], "biome":"plains"} + * them to be in JSON format with a valid biome (1.18.2 and + * above) defined. An example valid configuration is as follows: + * {"layers": [{"block": "stone", "height": 1}, {"block": "grass_block", "height": 1}], "biome":"plains"} * * @param generatorSettings The settings that should be used by the * generator