1.16.5 protocol is the same as 1.16.4 (#480)

This commit is contained in:
iceiix 2021-01-17 17:13:23 -08:00 committed by GitHub
parent d14573c3cf
commit c78068e6f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -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 | ✓ |

View File

@ -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,