mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
Update to 1.17-pre3
This commit is contained in:
parent
13bf22b60c
commit
ac342b72cc
2 changed files with 3 additions and 3 deletions
2
pom.xml
2
pom.xml
|
@ -5,7 +5,7 @@
|
|||
|
||||
<groupId>com.github.steveice10</groupId>
|
||||
<artifactId>mcprotocollib</artifactId>
|
||||
<version>21w20a-SNAPSHOT</version>
|
||||
<version>1.17-pre3-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>MCProtocolLib</name>
|
||||
|
|
|
@ -12,12 +12,12 @@ public final class MinecraftConstants {
|
|||
/**
|
||||
* Current supported game version.
|
||||
*/
|
||||
public static final String GAME_VERSION = "21w20a";
|
||||
public static final String GAME_VERSION = "1.17-pre3";
|
||||
|
||||
/**
|
||||
* Current supported protocol version.
|
||||
*/
|
||||
public static final int PROTOCOL_VERSION = (1 << 30) | 28;
|
||||
public static final int PROTOCOL_VERSION = (1 << 31) | 29;
|
||||
|
||||
// General Key Constants
|
||||
|
||||
|
|
Loading…
Reference in a new issue