<doc>(server-properties):

- Add YAML multiline to render `GENERATOR_SETTINGS` code more readable
- Remove JSON code block above as it is now unnecessary
This commit is contained in:
Kezzer 2023-10-27 17:24:43 +02:00 committed by Geoff Bourne
parent 2e07ba431d
commit 78fd5457d4

View File

@ -318,30 +318,28 @@ Example for a superflat world:
- 15x sandstone
- Desert biome
```json
{
"layers": [
{
"block": "minecraft:bedrock",
"height": 1
},
{
"block": "minecraft:stone",
"height": 2
},
{
"block": "minecraft:sandstone",
"height": 3
}
],
"biome": "minecraft:desert"
}
```
In a docker compose, it would like like the following:
```yaml
LEVEL_TYPE: FLAT
GENERATOR_SETTINGS: '{"layers": [{"block": "minecraft:bedrock","height": 1},{"block": "minecraft:stone","height": 2},{"block": "minecraft:sandstone","height": 3}]},"biome": "minecraft:desert"}'
GENERATOR_SETTINGS: >-4
{
"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).