diff --git a/pom.xml b/pom.xml index 4527f856..58720f49 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.github.steveice10 mcprotocollib - 1.16-SNAPSHOT + 1.16.1-SNAPSHOT jar MCProtocolLib diff --git a/src/main/java/com/github/steveice10/mc/protocol/MinecraftConstants.java b/src/main/java/com/github/steveice10/mc/protocol/MinecraftConstants.java index d690cacf..bf238d84 100644 --- a/src/main/java/com/github/steveice10/mc/protocol/MinecraftConstants.java +++ b/src/main/java/com/github/steveice10/mc/protocol/MinecraftConstants.java @@ -2,8 +2,8 @@ package com.github.steveice10.mc.protocol; public class MinecraftConstants { // General Constants - public static final String GAME_VERSION = "1.16"; - public static final int PROTOCOL_VERSION = 735; + public static final String GAME_VERSION = "1.16.1"; + public static final int PROTOCOL_VERSION = 736; // General Key Constants public static final String PROFILE_KEY = "profile"; diff --git a/src/main/java/com/github/steveice10/mc/protocol/data/game/world/block/value/BeaconValue.java b/src/main/java/com/github/steveice10/mc/protocol/data/game/world/block/value/BeaconValue.java deleted file mode 100644 index d721d77e..00000000 --- a/src/main/java/com/github/steveice10/mc/protocol/data/game/world/block/value/BeaconValue.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.github.steveice10.mc.protocol.data.game.world.block.value; - -public class BeaconValue implements BlockValue { -}