Preliminary 1.16.3 support (#566)

This commit is contained in:
FivePB (Xer) 2020-09-10 21:46:19 +02:00 committed by GitHub
parent 8075dbe95d
commit 61700eb820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
From d3bf43998d56d5050eb34fded366e0fdb3ae4f4e Mon Sep 17 00:00:00 2001
From: "Five (Xer)" <admin@xernium.com>
Date: Thu, 10 Sep 2020 17:42:01 +0200
Subject: [PATCH] Waterfall-1.16.3-Patch
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
index aa1b770c..f33bb5c4 100644
--- a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
@@ -31,6 +31,7 @@ public class ProtocolConstants
public static final int MINECRAFT_1_16 = 735;
public static final int MINECRAFT_1_16_1 = 736;
public static final int MINECRAFT_1_16_2 = 751;
+ public static final int MINECRAFT_1_16_3 = 753;
public static final List<String> SUPPORTED_VERSIONS = Arrays.asList(
"1.8.x",
"1.9.x",
@@ -67,7 +68,8 @@ public class ProtocolConstants
ProtocolConstants.MINECRAFT_1_15_2,
ProtocolConstants.MINECRAFT_1_16,
ProtocolConstants.MINECRAFT_1_16_1,
- ProtocolConstants.MINECRAFT_1_16_2
+ ProtocolConstants.MINECRAFT_1_16_2,
+ ProtocolConstants.MINECRAFT_1_16_3
);
public static final boolean isBeforeOrEq(int before, int other)
--
2.24.0