Skip to content

Commit 659c504

Browse files
committed
26.2-snapshot-4
1 parent 0edc703 commit 659c504

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

protocol/src/main/java/org/geysermc/mcprotocollib/protocol/codec/MinecraftCodec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@
236236

237237
public class MinecraftCodec {
238238
public static final PacketCodec CODEC = PacketCodec.builder()
239-
.protocolVersion((1 << 30) | 309)
240-
.minecraftVersion("26.2 Snapshot 3")
239+
.protocolVersion((1 << 30) | 310)
240+
.minecraftVersion("26.2 Snapshot 4")
241241
.state(ProtocolState.HANDSHAKE, MinecraftPacketRegistry.builder()
242242
.registerServerboundPacket(ClientIntentionPacket.class, ClientIntentionPacket::new)
243243
)

protocol/src/main/java/org/geysermc/mcprotocollib/protocol/data/game/entity/attribute/AttributeType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ enum Builtin implements AttributeType {
3838
ATTACK_DAMAGE("minecraft:attack_damage", 2, 0, 2048),
3939
ATTACK_KNOCKBACK("minecraft:attack_knockback", 0, 0, 5),
4040
ATTACK_SPEED("minecraft:attack_speed", 4, 0, 1024),
41+
BELOW_NAME_DISTANCE("minecraft:below_name_distance", 10, 0, 512),
4142
BLOCK_BREAK_SPEED("minecraft:block_break_speed", 1, 0, 1024),
4243
BLOCK_INTERACTION_RANGE("minecraft:block_interaction_range", 4.5, 0, 64),
4344
BOUNCINESS("minecraft:bounciness", 0, 0, 1),
@@ -58,6 +59,7 @@ enum Builtin implements AttributeType {
5859
MINING_EFFICIENCY("minecraft:mining_efficiency", 0, 0, 1024),
5960
MOVEMENT_EFFICIENCY("minecraft:movement_efficiency", 0, 0, 1),
6061
MOVEMENT_SPEED("minecraft:movement_speed", 0.7, 0, 1024),
62+
NAMEPLATE_DISTANCE("minecraft:nameplate_distance", 64, 0, 512),
6163
OXYGEN_BONUS("minecraft:oxygen_bonus", 0, 0, 1024),
6264
SAFE_FALL_DISTANCE("minecraft:safe_fall_distance", 3, -1024, 1024),
6365
SCALE("minecraft:scale", 1, 0.0625, 16),

protocol/src/main/java/org/geysermc/mcprotocollib/protocol/data/game/level/sound/BuiltinSound.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,14 @@ public enum BuiltinSound implements Sound {
235235
ITEM_BUCKET_EMPTY_FISH("item.bucket.empty_fish"),
236236
ITEM_BUCKET_EMPTY_LAVA("item.bucket.empty_lava"),
237237
ITEM_BUCKET_EMPTY_POWDER_SNOW("item.bucket.empty_powder_snow"),
238+
ITEM_BUCKET_EMPTY_SULFUR_CUBE("item.bucket.empty_sulfur_cube"),
238239
ITEM_BUCKET_EMPTY_TADPOLE("item.bucket.empty_tadpole"),
239240
ITEM_BUCKET_FILL("item.bucket.fill"),
240241
ITEM_BUCKET_FILL_AXOLOTL("item.bucket.fill_axolotl"),
241242
ITEM_BUCKET_FILL_FISH("item.bucket.fill_fish"),
242243
ITEM_BUCKET_FILL_LAVA("item.bucket.fill_lava"),
243244
ITEM_BUCKET_FILL_POWDER_SNOW("item.bucket.fill_powder_snow"),
245+
ITEM_BUCKET_FILL_SULFUR_CUBE("item.bucket.fill_sulfur_cube"),
244246
ITEM_BUCKET_FILL_TADPOLE("item.bucket.fill_tadpole"),
245247
ITEM_BUNDLE_DROP_CONTENTS("item.bundle.drop_contents"),
246248
ITEM_BUNDLE_INSERT("item.bundle.insert"),
-1 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)