mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
<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:
parent
2e07ba431d
commit
78fd5457d4
@ -318,7 +318,9 @@ Example for a superflat world:
|
||||
- 15x sandstone
|
||||
- Desert biome
|
||||
|
||||
```json
|
||||
```yaml
|
||||
LEVEL_TYPE: FLAT
|
||||
GENERATOR_SETTINGS: >-4
|
||||
{
|
||||
"layers": [
|
||||
{
|
||||
@ -331,17 +333,13 @@ Example for a superflat world:
|
||||
},
|
||||
{
|
||||
"block": "minecraft:sandstone",
|
||||
"height": 3
|
||||
"height": 15
|
||||
}
|
||||
],
|
||||
"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).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user