From 5121bf9ee1b665168280d2df3f995efe1aa1cd35 Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 10 Apr 2023 17:19:33 +0000 Subject: [PATCH] 23w14a --- README.md | 2 +- azalea-language/src/en_us.json | 11 +++++++++-- azalea-protocol/src/packets/mod.rs | 2 +- azalea-registry/src/lib.rs | 6 ++++-- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1a43f9cf..58ecc24f 100755 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A collection of Rust crates for making Minecraft bots, clients, and tools.

-*Currently supported Minecraft version: `23w13a`.* +*Currently supported Minecraft version: `23w14a`.* ## ⚠️ Azalea is still very unfinished, though most crates are in a somewhat useable state diff --git a/azalea-language/src/en_us.json b/azalea-language/src/en_us.json index f9a7fc53..72a9ea42 100755 --- a/azalea-language/src/en_us.json +++ b/azalea-language/src/en_us.json @@ -3472,7 +3472,9 @@ "gui.socialInteractions.tooltip.show": "Show messages", "gui.stats": "Statistics", "gui.toMenu": "Back to Server List", + "gui.toRealms": "Back to Realms List", "gui.toTitle": "Back to Title Screen", + "gui.toWorld": "Back to World List", "gui.up": "Up", "gui.yes": "Yes", "hanging_sign.edit": "Edit Hanging Sign Message", @@ -4951,6 +4953,10 @@ "potion.withAmplifier": "%s %s", "potion.withDuration": "%s (%s)", "predicate.unknown": "Unknown predicate: %s", + "quickplay.error.title": "Failed to Quick Play", + "quickplay.error.invalid_identifier": "Could not find world with the provided identifier", + "quickplay.error.realm_connect": "Could not connect to Realm", + "quickplay.error.realm_permission": "Lacking permission to connect to this Realm", "realms.missing.module.error.text": "Realms could not be opened right now, please try again later", "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots", "recipe.notFound": "Unknown recipe: %s", @@ -5346,8 +5352,11 @@ "subtitles.block.sculk.spread": "Sculk spreads", "subtitles.block.shulker_box.close": "Shulker closes", "subtitles.block.shulker_box.open": "Shulker opens", + "subtitles.block.sign.waxed_interact_fail": "Sign wobbles", "subtitles.block.smithing_table.use": "Smithing Table used", "subtitles.block.smoker.smoke": "Smoker smokes", + "subtitles.block.sniffer.egg_crack": "Sniffer Egg cracks", + "subtitles.block.sniffer.egg_hatch": "Sniffer Egg hatches", "subtitles.block.sweet_berry_bush.pick_berries": "Berries pop", "subtitles.block.trapdoor.toggle": "Trapdoor creaks", "subtitles.block.tripwire.attach": "Tripwire attaches", @@ -5779,8 +5788,6 @@ "subtitles.entity.sniffer.searching": "Sniffer searches", "subtitles.entity.sniffer.sniffing": "Sniffer sniffs", "subtitles.entity.sniffer.step": "Sniffer steps", - "subtitles.entity.sniffer.egg_crack": "Sniffer Egg cracks", - "subtitles.entity.sniffer.egg_hatch": "Sniffer Egg hatches", "subtitles.entity.snow_golem.death": "Snow Golem dies", "subtitles.entity.snow_golem.hurt": "Snow Golem hurts", "subtitles.entity.snowball.throw": "Snowball flies", diff --git a/azalea-protocol/src/packets/mod.rs b/azalea-protocol/src/packets/mod.rs index 6c11139a..7639378e 100755 --- a/azalea-protocol/src/packets/mod.rs +++ b/azalea-protocol/src/packets/mod.rs @@ -10,7 +10,7 @@ use std::io::{Cursor, Write}; // TODO: rename the packet files to just like clientbound_add_entity instead of // clientbound_add_entity_packet -pub const PROTOCOL_VERSION: u32 = 1073741952; +pub const PROTOCOL_VERSION: u32 = 1073741954; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum ConnectionProtocol { diff --git a/azalea-registry/src/lib.rs b/azalea-registry/src/lib.rs index eaeb6147..acdcd676 100755 --- a/azalea-registry/src/lib.rs +++ b/azalea-registry/src/lib.rs @@ -2995,6 +2995,7 @@ enum LootFunctionKind { SetBannerPattern => "minecraft:set_banner_pattern", SetPotion => "minecraft:set_potion", SetInstrument => "minecraft:set_instrument", + Reference => "minecraft:reference", } } @@ -3510,6 +3511,7 @@ enum SensorKind { FrogAttackables => "minecraft:frog_attackables", IsInWater => "minecraft:is_in_water", WardenEntitySensor => "minecraft:warden_entity_sensor", + SnifferTemptations => "minecraft:sniffer_temptations", } } @@ -4746,8 +4748,8 @@ enum SoundEvent { EntitySnifferDigging => "minecraft:entity.sniffer.digging", EntitySnifferDiggingStop => "minecraft:entity.sniffer.digging_stop", EntitySnifferHappy => "minecraft:entity.sniffer.happy", - EntitySnifferEggCrack => "minecraft:entity.sniffer.egg_crack", - EntitySnifferEggHatch => "minecraft:entity.sniffer.egg_hatch", + BlockSnifferEggCrack => "minecraft:block.sniffer.egg_crack", + BlockSnifferEggHatch => "minecraft:block.sniffer.egg_hatch", EntitySnowballThrow => "minecraft:entity.snowball.throw", BlockSnowBreak => "minecraft:block.snow.break", BlockSnowFall => "minecraft:block.snow.fall",