clientstuff

This commit is contained in:
2025-10-27 11:53:18 +01:00
parent 503b04656d
commit d22cef5355
1575 changed files with 795737 additions and 610 deletions

View File

@@ -214,6 +214,10 @@ debugging {
general {
# 'max-tick-time' property introduced with Minecraft 1.8. Stops the server if a game tick is taking too long to process
# Default value: 0 (off) [default: true]
B:enable_max_tick_time_property=true
# Backports 1.20's 'pause-when-empty-seconds' server property
# Default value: 0 (off) [default: true]
B:enable_pause_when_empty_property=true
@@ -244,6 +248,27 @@ login {
}
mixins {
# Adds a permission node (serverutilities.bypass_player_limit) that allows for joining while server is full. [default: true]
B:bypassPlayerLimit=true
# Enable the mixins that control enderman behavior. This is required by world:enable_endermen.
# Allowed values:
# TRUE = Enable the enderman mixins.
# FALSE = Disable the enderman mixins. [default: true]
B:endermen=true
}
pregen {
# When pregeneration is active, queue this many chunks per tick. [range: -2147483648 ~ 2147483647, default: 1]
I:chunksPerTick=1
# The maximum time to spend on pregeneration per tick, in milliseconds. Note that chunk unloading also takes time, and isn't limited by this config! [range: 1.4E-45 ~ 3.4028235E38, default: 25.0]
S:timeLimitMs=25.0
}
ranks {
# Add permissions for commands and allow them to be controlled by ranks. [default: true]
B:command_permissions=true
@@ -328,6 +353,15 @@ world {
S:disabled_right_click_items <
>
# Requires chunk_claiming and mixins:endermen to be true.
# Allowed values:
# DEFAULT = Teams can decide their enderman setting
# TRUE = Enderman block interactions on for everyone.
# FALSE = Enderman block interactions disabled for everyone.
# Possible values: [TRUE, FALSE, DEFAULT]
# [default: DEFAULT]
S:enable_endermen=DEFAULT
# Allowed values:
# DEFAULT = Teams can decide their explosion setting
# TRUE = Explosions on for everyone.