From c78068e6f939b977658e8e64d06bfe0ebc2ff407 Mon Sep 17 00:00:00 2001 From: iceiix <43691553+iceiix@users.noreply.github.com> Date: Sun, 17 Jan 2021 17:13:23 -0800 Subject: [PATCH] 1.16.5 protocol is the same as 1.16.4 (#480) --- README.md | 1 + protocol/src/protocol/versions.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 321acb4..951e196 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ Discussion forum: [https://github.com/iceiix/stevenarella/discussions](https://g | Game version | Protocol version | Supported? | | ------ | --- | --- | +| 1.16.5 | 754 | ✓ | | 1.16.4 | 754 | ✓ | | 1.16.3 | 753 | ✓ | | 1.16.2 | 751 | ✓ | diff --git a/protocol/src/protocol/versions.rs b/protocol/src/protocol/versions.rs index 78f00c5..0ac05c1 100644 --- a/protocol/src/protocol/versions.rs +++ b/protocol/src/protocol/versions.rs @@ -26,6 +26,7 @@ mod v1_9_2; pub fn protocol_name_to_protocol_version(s: String) -> i32 { match s.as_ref() { "" => SUPPORTED_PROTOCOLS[0], + "1.16.5" => 754, "1.16.4" => 754, "1.16.3" => 753, "1.16.2" => 751,