World Configuration
Representing the [world] section in server.toml.
Dimension
Default spawn dimension for new players.
[world]
dimension = "overworld"Possible values:
overworld
nether
endSpawn Position
Customize where players spawn using [x, y, z] coordinates. Supports floating point numbers.
[world]
spawn_position = [0.5, 320.0, 0.5]Spawn Rotation
Customize where players look at spawn using [yaw, pitch] coordinates. Supports floating point numbers.
[world]
spawn_rotation = [90.0, 90.0]World Boundaries
Control player movement by setting a minimum Y coordinate. When players fall below this level, they'll be teleported back to spawn and receive a configurable message.
Minimum Y Position
Set the lowest Y coordinate players can reach before being teleported back to spawn. Defaults to -64 (Minecraft's default world bottom).
[world.boundaries]
enabled = true
min_y_pos = -64Minimum Y Message
Customize the message players receive when they fall below the minimum Y position and are teleported back to spawn. Supports MiniMessage formatting for colors and styling.
[world.boundaries]
teleport_message = "<red>You have reached the bottom of the world.</red>"The message can be disabled by setting an empty string:
[world.boundaries]
teleport_message = ""Time
Sets the time in the world.
[world]
time = "midnight"Possible values:
day
noon
night
midnight
a specific time in ticks (0-24000)Lock Time 1.21.5+
Set to false to prevent the client from ticking the time.
[world.experimental]
lock_time = false