diff --git a/MinecraftBedrock/server.properties b/MinecraftBedrock/server.properties index 3f43126..47dd5c4 100644 --- a/MinecraftBedrock/server.properties +++ b/MinecraftBedrock/server.properties @@ -69,4 +69,29 @@ texturepack-required=false content-log-file-enabled=false # Enables logging content errors to a file -# Allowed values: "true" or "false" \ No newline at end of file +# Allowed values: "true" or "false" + +compression-threshold=1 +# Determines the smallest size of raw network payload to compress +# Allowed values: 0-65535 + +server-authoritative-movement=true +# Enables server authoritative movement. If true, the server will replay local user input on +# the server and send down corrections when the client's position doesn't match the server's. +# Corrections will only happen if correct-player-movement is set to true. + +player-movement-score-threshold=20 +# The number of incongruent time intervals needed before abnormal behavior is reported. +# Disabled by server-authoritative-movement. + +player-movement-distance-threshold=0.3 +# The difference between server and client positions that needs to be exceeded before abnormal behavior is detected. +# Disabled by server-authoritative-movement. + +player-movement-duration-threshold-in-ms=500 +# The duration of time the server and client positions can be out of sync (as defined by player-movement-distance-threshold) +# before the abnormal movement score is incremented. This value is defined in milliseconds. +# Disabled by server-authoritative-movement. + +correct-player-movement=false +# If true, the client position will get corrected to the server position if the movement score exceeds the threshold.