From d402403876e13bcf6f5d312c52034d96ae5106c4 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Mon, 30 Jun 2025 13:29:30 -0500 Subject: [PATCH] Adjusted wording and example for generator settings (#3522) --- docs/configuration/server-properties.md | 43 ++++++++++++------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/docs/configuration/server-properties.md b/docs/configuration/server-properties.md index 9881e324..96c174ff 100644 --- a/docs/configuration/server-properties.md +++ b/docs/configuration/server-properties.md @@ -408,29 +408,28 @@ Example for a superflat world: - Desert biome ```yaml -LEVEL_TYPE: FLAT -GENERATOR_SETTINGS: >-4 - { - "layers": [ - { - "block": "minecraft:bedrock", - "height": 1 - }, - { - "block": "minecraft:stone", - "height": 2 - }, - { - "block": "minecraft:sandstone", - "height": 15 - } - ], - "biome": "minecraft:desert" - } - - +environment: + LEVEL_TYPE: FLAT + GENERATOR_SETTINGS: >- + { + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 2 + }, + { + "block": "minecraft:sandstone", + "height": 15 + } + ], + "biome": "minecraft:desert" + } ``` -For more details, check the [official wiki](https://minecraft.wiki/w/Java_Edition_level_format#generatorOptions_tag_format). +For more details, refer to the Minecraft Wiki sections for [Superflat Multiplayer](https://minecraft.wiki/w/Superflat#Multiplayer) and [generator options tag format](https://minecraft.wiki/w/Java_Edition_level_format#generatorOptions_tag_format). ### Custom Server Resource Pack