This commit is contained in:
mat 2023-04-10 17:19:33 +00:00
parent a443c30b24
commit 5121bf9ee1
4 changed files with 15 additions and 6 deletions

View file

@ -9,7 +9,7 @@ A collection of Rust crates for making Minecraft bots, clients, and tools.
</p>
<!-- The line below is automatically read and updated by the migrate script, so don't change it manually. -->
*Currently supported Minecraft version: `23w13a`.*
*Currently supported Minecraft version: `23w14a`.*
## ⚠️ Azalea is still very unfinished, though most crates are in a somewhat useable state

View file

@ -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",

View file

@ -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 {

View file

@ -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",