From 249a720cee479502554f796565581e26318dff79 Mon Sep 17 00:00:00 2001 From: KennyTV Date: Wed, 12 Aug 2020 22:37:34 +0200 Subject: [PATCH] Fix wrong clientpackettype --- .../protocol/protocol1_15_2to1_16/Protocol1_15_2To1_16.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_15_2to1_16/Protocol1_15_2To1_16.java b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_15_2to1_16/Protocol1_15_2To1_16.java index 78c1d04f..06146bf9 100644 --- a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_15_2to1_16/Protocol1_15_2To1_16.java +++ b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_15_2to1_16/Protocol1_15_2To1_16.java @@ -101,7 +101,7 @@ public class Protocol1_15_2To1_16 extends BackwardsProtocol BackwardsMappings.blockMappings.getNewId(id), id -> MappingData.oldToNewItems.inverse().get(id), entityPackets::getOldEntityId, - categoryId -> categoryId > 49 ? -1 : categoryId).register(ClientboundPackets1_15.STATISTICS); + categoryId -> categoryId > 49 ? -1 : categoryId).register(ClientboundPackets1_16.STATISTICS); registerIncoming(ServerboundPackets1_14.ENTITY_ACTION, new PacketRemapper() { @Override