From b4c30dbff3e77eaceadaa1f77221bbb29a3f6e8d Mon Sep 17 00:00:00 2001 From: KennyTV <28825609+KennyTV@users.noreply.github.com> Date: Mon, 24 Jun 2019 17:24:21 +0200 Subject: [PATCH] Update to 1.14.3 --- all/pom.xml | 2 +- bukkit/pom.xml | 2 +- bungee/pom.xml | 2 +- core/pom.xml | 2 +- .../api/ViaBackwardsPlatform.java | 2 + .../packets/BlockItemPackets1_14.java | 2 +- .../Protocol1_14_2To1_14_3.java | 51 +++++++++++++++++++ fabric/pom.xml | 2 +- pom.xml | 4 +- sponge/pom.xml | 2 +- velocity/pom.xml | 2 +- 11 files changed, 63 insertions(+), 10 deletions(-) create mode 100644 core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_14_2to1_14_3/Protocol1_14_2To1_14_3.java diff --git a/all/pom.xml b/all/pom.xml index 5982b98a..60b3d8b3 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/bukkit/pom.xml b/bukkit/pom.xml index 3134b0ef..dff52654 100644 --- a/bukkit/pom.xml +++ b/bukkit/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/bungee/pom.xml b/bungee/pom.xml index 2fb61539..e531a2a0 100644 --- a/bungee/pom.xml +++ b/bungee/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 9bc9653a..b428704c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/core/src/main/java/nl/matsv/viabackwards/api/ViaBackwardsPlatform.java b/core/src/main/java/nl/matsv/viabackwards/api/ViaBackwardsPlatform.java index 64c63091..53b6e5c9 100644 --- a/core/src/main/java/nl/matsv/viabackwards/api/ViaBackwardsPlatform.java +++ b/core/src/main/java/nl/matsv/viabackwards/api/ViaBackwardsPlatform.java @@ -21,6 +21,7 @@ import nl.matsv.viabackwards.protocol.protocol1_13_1to1_13_2.Protocol1_13_1To1_1 import nl.matsv.viabackwards.protocol.protocol1_13_2to1_14.Protocol1_13_2To1_14; import nl.matsv.viabackwards.protocol.protocol1_13to1_13_1.Protocol1_13To1_13_1; import nl.matsv.viabackwards.protocol.protocol1_14_1to1_14_2.Protocol1_14_1To1_14_2; +import nl.matsv.viabackwards.protocol.protocol1_14_2to1_14_3.Protocol1_14_2To1_14_3; import nl.matsv.viabackwards.protocol.protocol1_14to1_14_1.Protocol1_14To1_14_1; import nl.matsv.viabackwards.protocol.protocol1_9_4to1_10.Protocol1_9_4To1_10; import us.myles.ViaVersion.api.protocol.ProtocolRegistry; @@ -50,6 +51,7 @@ public interface ViaBackwardsPlatform { ProtocolRegistry.registerProtocol(new Protocol1_13_2To1_14(), Collections.singletonList(ProtocolVersion.v1_13_2.getId()), ProtocolVersion.v1_14.getId()); ProtocolRegistry.registerProtocol(new Protocol1_14To1_14_1(), Collections.singletonList(ProtocolVersion.v1_14.getId()), ProtocolVersion.v1_14_1.getId()); ProtocolRegistry.registerProtocol(new Protocol1_14_1To1_14_2(), Collections.singletonList(ProtocolVersion.v1_14_1.getId()), ProtocolVersion.v1_14_2.getId()); + ProtocolRegistry.registerProtocol(new Protocol1_14_2To1_14_3(), Collections.singletonList(ProtocolVersion.v1_14_2.getId()), ProtocolVersion.v1_14_3.getId()); } } diff --git a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/BlockItemPackets1_14.java b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/BlockItemPackets1_14.java index 6cfca5c5..3b519793 100644 --- a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/BlockItemPackets1_14.java +++ b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/BlockItemPackets1_14.java @@ -527,7 +527,7 @@ public class BlockItemPackets1_14 extends BlockItemRewriter viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/pom.xml b/pom.xml index e6db8b88..b98a0e31 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ nl.matsv viabackwards-parent - 3.0.0-1.14.2 + 3.0.0-1.14.3 pom Allow newer clients to join older server versions. @@ -61,7 +61,7 @@ us.myles viaversion - 2.1.1 + 2.1.2 provided diff --git a/sponge/pom.xml b/sponge/pom.xml index 1674f591..e2c0d36f 100644 --- a/sponge/pom.xml +++ b/sponge/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0 diff --git a/velocity/pom.xml b/velocity/pom.xml index 324ddece..e96ec60c 100644 --- a/velocity/pom.xml +++ b/velocity/pom.xml @@ -15,7 +15,7 @@ viabackwards-parent nl.matsv - 3.0.0-1.14.2 + 3.0.0-1.14.3 4.0.0