forked from df-mc/dragonfly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
38 lines (35 loc) · 2.06 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[Network]
# The address of the server, including the port. The server will be listening on this address. If another
# server is already running on this port, please select a different port.
Address = ":19132"
[Server]
# The name as it shows up in the server list. Minecraft colour codes may be used in this name to format the
# name of the server.
Name = "Dragonfly Server"
# The maximum amount of players accepted into the server. If set to 0, there is no player limit. The max
# player count will increase as more players join.
MaximumPlayers = 0
# The message shown to players when the server is shutting down. The message may be left empty to direct
# players to the server list directly.
ShutdownMessage = "Server closed."
# AuthEnabled controls whether or not players must be connected to Xbox Live in order to join the server.
AuthEnabled = true
# JoinMessage is the message that appears when a player joins the server. Leave this empty to disable it.
# %v is the placeholder for the username of the player. Set this to "" to disable.
JoinMessage = "%v has joined the game"
# QuitMessage is the message that appears when a player leaves the server. Leave this empty to disable it.
# %v is the placeholder for the username of the player. Set this to "" to disable.
QuitMessage = "%v has left the game"
[World]
# The name of the world of the server. The name will show up at the top of the player list in the in-game
# pause menu. It has no functionality beyond that.
Name = "World"
# The folder that the world files (will) reside in, relative to the working directory. If not currently
# present, the folder will be made.
Folder = "world"
# The maximum chunk radius that players may set in their settings. If they try to set it above this number,
# it will be capped and set to the max.
MaximumChunkRadius = 32
# SimulationDistance is the maximum distance in chunks that a chunk must be to a player in order for
# it to receive random ticks. This field may be set to 0 to disable random block updates altogether.
SimulationDistance = 8