mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-26 23:52:31 -05:00
24w46a
This commit is contained in:
parent
54d3fc21a6
commit
aa7844fe8b
3 changed files with 2 additions and 4 deletions
|
@ -216,9 +216,9 @@ import org.geysermc.mcprotocollib.protocol.packet.status.serverbound.Serverbound
|
||||||
|
|
||||||
public class MinecraftCodec {
|
public class MinecraftCodec {
|
||||||
public static final PacketCodec CODEC = PacketCodec.builder()
|
public static final PacketCodec CODEC = PacketCodec.builder()
|
||||||
.protocolVersion((1 << 30) | 221)
|
.protocolVersion((1 << 30) | 222)
|
||||||
.helper(MinecraftCodecHelper::new)
|
.helper(MinecraftCodecHelper::new)
|
||||||
.minecraftVersion("24w45a")
|
.minecraftVersion("24w46a")
|
||||||
.state(ProtocolState.HANDSHAKE, MinecraftPacketRegistry.builder()
|
.state(ProtocolState.HANDSHAKE, MinecraftPacketRegistry.builder()
|
||||||
.registerServerboundPacket(ClientIntentionPacket.class, ClientIntentionPacket::new)
|
.registerServerboundPacket(ClientIntentionPacket.class, ClientIntentionPacket::new)
|
||||||
)
|
)
|
||||||
|
|
|
@ -33,7 +33,6 @@ public enum EntityType {
|
||||||
COMMAND_BLOCK_MINECART,
|
COMMAND_BLOCK_MINECART,
|
||||||
COW,
|
COW,
|
||||||
CREAKING,
|
CREAKING,
|
||||||
CREAKING_TRANSIENT,
|
|
||||||
CREEPER,
|
CREEPER,
|
||||||
DARK_OAK_BOAT,
|
DARK_OAK_BOAT,
|
||||||
DARK_OAK_CHEST_BOAT,
|
DARK_OAK_CHEST_BOAT,
|
||||||
|
|
|
@ -1337,7 +1337,6 @@ public enum BuiltinSound implements Sound {
|
||||||
BLOCK_SPAWNER_STEP("block.spawner.step"),
|
BLOCK_SPAWNER_STEP("block.spawner.step"),
|
||||||
BLOCK_RESIN_BREAK("block.resin.break"),
|
BLOCK_RESIN_BREAK("block.resin.break"),
|
||||||
BLOCK_RESIN_FALL("block.resin.fall"),
|
BLOCK_RESIN_FALL("block.resin.fall"),
|
||||||
BLOCK_RESIN_HIT("block.resin.hit"),
|
|
||||||
BLOCK_RESIN_PLACE("block.resin.place"),
|
BLOCK_RESIN_PLACE("block.resin.place"),
|
||||||
BLOCK_RESIN_STEP("block.resin.step"),
|
BLOCK_RESIN_STEP("block.resin.step"),
|
||||||
BLOCK_RESIN_BRICKS_BREAK("block.resin_bricks.break"),
|
BLOCK_RESIN_BRICKS_BREAK("block.resin_bricks.break"),
|
||||||
|
|
Loading…
Reference in a new issue