<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,7 +318,9 @@ Example for a superflat world:
- 15x sandstone - 15x sandstone
- Desert biome - Desert biome
```json ```yaml
LEVEL_TYPE: FLAT
GENERATOR_SETTINGS: >-4
{ {
"layers": [ "layers": [
{ {
@ -331,17 +333,13 @@ Example for a superflat world:
}, },
{ {
"block": "minecraft:sandstone", "block": "minecraft:sandstone",
"height": 3 "height": 15
} }
], ],
"biome": "minecraft:desert" "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"}'
``` ```
For more details, check the [official wiki](https://minecraft.wiki/w/Java_Edition_level_format#generatorOptions_tag_format). For more details, check the [official wiki](https://minecraft.wiki/w/Java_Edition_level_format#generatorOptions_tag_format).