Fix ChatPosition and update to 1.17-rc2

This commit is contained in:
Articdive 2021-06-07 20:46:09 +02:00
parent 68f4d74594
commit a3b10ec18a
No known key found for this signature in database
GPG Key ID: B069585F0F7D90DE
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Update this version with every release. It is purely used for the code generator and data dependency.
mcVersion = 1.17-rc1
mcVersion = 1.17-rc2
asmVersion=9.0
mixinVersion=0.8.1

View File

@ -68,8 +68,8 @@ public final class MinecraftServer {
public final static Logger LOGGER = LoggerFactory.getLogger(MinecraftServer.class);
public static final String VERSION_NAME = "1.17-rc1";
public static final int PROTOCOL_VERSION = 1073741858;
public static final String VERSION_NAME = "1.17-rc2";
public static final int PROTOCOL_VERSION = 1073741859;
// Threads
public static final String THREAD_NAME_BENCHMARK = "Ms-Benchmark";

View File

@ -25,7 +25,7 @@ public enum ChatPosition {
private final MessageType messageType;
ChatPosition(@NotNull MessageType messageType) {
ChatPosition(@Nullable MessageType messageType) {
this.messageType = messageType;
}