Fix boss bar handling on Minecraft 1.13+.

This commit is contained in:
Andrew Steinborn 2018-08-22 21:08:47 -04:00
parent ccb904eeb1
commit 2d21c01f8a

View File

@ -68,7 +68,8 @@ public enum StateRegistry {
CLIENTBOUND.register(BossBar.class, BossBar::new,
map(0x0C, MINECRAFT_1_9, false),
map(0x0C, MINECRAFT_1_12, false));
map(0x0C, MINECRAFT_1_12, false),
map(0x0C, MINECRAFT_1_13, false));
CLIENTBOUND.register(Chat.class, Chat::new,
map(0x02, MINECRAFT_1_8, true),
map(0x0F, MINECRAFT_1_9, true),