minecraft-server/live-server/plugins/VoidWorldGenerator/config.yml
s8n-ru 0dad38e02e Initial commit: racked.ru Minecraft server config snapshot
Captures live config state of nullstone Purpur 1.21.11 server:
- docker-compose.yml (itzg/minecraft-server image, MODRINTH_PROJECTS + PLUGINS lists)
- All plugin configs under live-server/plugins/ (no DBs, no jars, no world data)
- Server core: bukkit.yml, spigot.yml, purpur.yml, paper-global.yml, paper-world-defaults.yml, server.properties

Excluded via .gitignore:
- World data (world/, world_nether/, world_the_end/, auth_limbo/)
- Sensitive: AuthMe DB (password hashes), Lands DB, CoreProtect DB, Essentials userdata
- Jars (auto-fetched), logs, caches, .paper-remapped
2026-04-30 18:33:38 +01:00

23 lines
No EOL
788 B
YAML

# Empty chunk biome is set only since 1.20.6, for older version it is always set to "THE_VOID".
# Configuration for a custom world
worlds:
# Default configuration for every world that does not have a specific configuration.
'*':
# The biome to use for empty chunks. This biome will be used for chunks that have not been generated yet.
# Accepted value can be found there: https://jd.papermc.io/paper/1.21.3/org/bukkit/block/Biome.html (Replace 1.21.3 with your server version in the URL)
emptyChunkBiome: "THE_VOID"
# Coordinates of the spawn point
spawn:
x: 0
y: 64
z: 0
# Specific configuration for the "aCustomWorld" world.
# aCustomWorld:
# emptyChunkBiome: "DRIPSTONE_CAVES"
# spawn:
# x: 100
# y: 64
# z: 30