Skip to content

Commit

Permalink
24w46a
Browse files Browse the repository at this point in the history
  • Loading branch information
basaigh committed Nov 28, 2024
1 parent 54d3fc2 commit aa7844f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@

public class MinecraftCodec {
public static final PacketCodec CODEC = PacketCodec.builder()
.protocolVersion((1 << 30) | 221)
.protocolVersion((1 << 30) | 222)
.helper(MinecraftCodecHelper::new)
.minecraftVersion("24w45a")
.minecraftVersion("24w46a")
.state(ProtocolState.HANDSHAKE, MinecraftPacketRegistry.builder()
.registerServerboundPacket(ClientIntentionPacket.class, ClientIntentionPacket::new)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public enum EntityType {
COMMAND_BLOCK_MINECART,
COW,
CREAKING,
CREAKING_TRANSIENT,
CREEPER,
DARK_OAK_BOAT,
DARK_OAK_CHEST_BOAT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,6 @@ public enum BuiltinSound implements Sound {
BLOCK_SPAWNER_STEP("block.spawner.step"),
BLOCK_RESIN_BREAK("block.resin.break"),
BLOCK_RESIN_FALL("block.resin.fall"),
BLOCK_RESIN_HIT("block.resin.hit"),
BLOCK_RESIN_PLACE("block.resin.place"),
BLOCK_RESIN_STEP("block.resin.step"),
BLOCK_RESIN_BRICKS_BREAK("block.resin_bricks.break"),
Expand Down

0 comments on commit aa7844f

Please sign in to comment.