mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
Update to 1.16.4
This commit is contained in:
parent
c363fc3cb5
commit
7321e8f0d7
2 changed files with 3 additions and 4 deletions
2
pom.xml
2
pom.xml
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
<groupId>com.github.steveice10</groupId>
|
<groupId>com.github.steveice10</groupId>
|
||||||
<artifactId>mcprotocollib</artifactId>
|
<artifactId>mcprotocollib</artifactId>
|
||||||
<version>1.16.4-pre2-SNAPSHOT</version>
|
<version>1.16.4-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>MCProtocolLib</name>
|
<name>MCProtocolLib</name>
|
||||||
|
|
|
@ -12,13 +12,12 @@ public final class MinecraftConstants {
|
||||||
/**
|
/**
|
||||||
* Current supported game version.
|
* Current supported game version.
|
||||||
*/
|
*/
|
||||||
public static final String GAME_VERSION = "1.16.4-pre2";
|
public static final String GAME_VERSION = "1.16.4";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Current supported protocol version.
|
* Current supported protocol version.
|
||||||
*/
|
*/
|
||||||
//public static final int PROTOCOL_VERSION = 754;
|
public static final int PROTOCOL_VERSION = 754;
|
||||||
public static final int PROTOCOL_VERSION = (1 << 30) | 2;
|
|
||||||
|
|
||||||
// General Key Constants
|
// General Key Constants
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue