mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
1.20.3-pre3
This commit is contained in:
parent
00bce426ca
commit
1dffba1eb5
2 changed files with 3 additions and 2 deletions
|
@ -212,9 +212,9 @@ public class MinecraftCodec {
|
|||
}
|
||||
|
||||
public static final PacketCodec CODEC = PacketCodec.builder()
|
||||
.protocolVersion(764)
|
||||
.protocolVersion((1 << 30) | 166)
|
||||
.helper(() -> new MinecraftCodecHelper(LEVEL_EVENTS, SOUND_NAMES))
|
||||
.minecraftVersion("1.20.2")
|
||||
.minecraftVersion("1.20.3-pre3")
|
||||
.state(ProtocolState.HANDSHAKE, PacketStateCodec.builder()
|
||||
.registerServerboundPacket(ClientIntentionPacket.class, ClientIntentionPacket::new)
|
||||
)
|
||||
|
|
|
@ -5,6 +5,7 @@ public enum ResourcePackStatus {
|
|||
DECLINED,
|
||||
FAILED_DOWNLOAD,
|
||||
ACCEPTED,
|
||||
DOWNLOADED,
|
||||
INVALID_URL,
|
||||
FAILED_RELOAD,
|
||||
DISCARDED;
|
||||
|
|
Loading…
Reference in a new issue