Skip to content

Document various 1.20.5 config changes #361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config-specs/paper/server-properties.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
accept-transfers:
default: "false"
description: "Whether this server accepts transfers from other servers using the transfer command/packet. If this is set to false, the server will disconnect the client."
allow-flight:
default: "false"
description: >
Expand Down Expand Up @@ -167,6 +170,11 @@ rcon.password:
rcon.port:
default: "25575"
description: "The port to start the rcon server on."
region-file-compression:
default: "deflate"
description: >
Specifies the compression type used to compress region files. Possible values are: "deflate", "lz4" and "none".
If set to "none", region files will take up significantly more disk space, but it might make sense together with filesystem-level compression.
require-resource-pack:
default: "false"
description: "If true, a player must have the given resource pack to connect. They will be kicked if they do not have it."
Expand Down
4 changes: 2 additions & 2 deletions docs/paper/dev/getting-started/plugin-yml.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ This will be shown in the plugin info commands.

The version of the Paper API that your plugin is using. This doesn't include the minor version.
Servers with a version lower than the version specified here will refuse to load the plugin.
The valid versions are 1.13 - <SoftwareVersion versionType={"maj"}/>.
- <VersionFormattedCode>`api-version: '%%_MAJ_MC_%%'`</VersionFormattedCode>
The valid versions are 1.13 - <SoftwareVersion versionType={"maj-min"}/>.
- <VersionFormattedCode>`api-version: '%%_MAJ_MIN_MC_%%'`</VersionFormattedCode>

:::info

Expand Down