Change default protocol version to 1.19.3 (761)

This commit is contained in:
timvisee 2023-01-30 18:08:23 +01:00
parent b609f86bde
commit 835ca62c06
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
3 changed files with 6 additions and 6 deletions

View File

@ -21,8 +21,8 @@ In lazymc you may configure what protocol version to use:
# Server version & protocol hint.
# Sent to clients until actual server version is known.
# See: https://git.io/J1Fvx
version = "1.18.1"
protocol = 757
version = "1.19.3"
protocol = 761
# -- snip --
```

View File

@ -18,8 +18,8 @@
# Server version & protocol hint.
# Sent to clients until actual server version is known.
# See: https://git.io/J1Fvx
#version = "1.18.1"
#protocol = 757
#version = "1.19.3"
#protocol = 761
[server]
# Server address. Internal IP and port of server started by lazymc to proxy to.

View File

@ -9,7 +9,7 @@ pub mod packets;
/// in the configuration.
///
/// Should be kept up-to-date with latest supported Minecraft version by lazymc.
pub const PROTO_DEFAULT_VERSION: &str = "1.18.1";
pub const PROTO_DEFAULT_VERSION: &str = "1.19.3";
/// Default minecraft protocol version.
///
@ -17,7 +17,7 @@ pub const PROTO_DEFAULT_VERSION: &str = "1.18.1";
/// in the configuration.
///
/// Should be kept up-to-date with latest supported Minecraft version by lazymc.
pub const PROTO_DEFAULT_PROTOCOL: u32 = 757;
pub const PROTO_DEFAULT_PROTOCOL: u32 = 761;
/// Compression threshold to use.
// TODO: read this from server.properties instead