This commit is contained in:
mat 2023-06-12 14:35:00 -05:00
parent 8be3921ad4
commit 49f951688e
4 changed files with 6 additions and 3 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: `1.20-pre5`.*
*Currently supported Minecraft version: `1.20`.*
## ⚠️ Azalea is still very unfinished, though most crates are in a somewhat useable state

View file

@ -3384,6 +3384,7 @@
"gui.advancements": "Advancements",
"gui.all": "All",
"gui.back": "Back",
"gui.copy_link_to_clipboard": "Copy Link to Clipboard",
"gui.banned.description": "%s\n\n%s\n\nLearn more at the following link: %s",
"gui.banned.description.permanent": "Your account is permanently banned, which means you can\u2019t play online or join Realms.",
"gui.banned.description.reason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards.",
@ -4722,6 +4723,7 @@
"narrator.screen.usage": "Use mouse cursor or Tab button to select element",
"narrator.select": "Selected: %s",
"narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s",
"narrator.select.world_info": "Selected %s, last played: %s, %s",
"narrator.toast.disabled": "Narrator Disabled",
"narrator.toast.enabled": "Narrator Enabled",
"optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?",
@ -6092,6 +6094,8 @@
"subtitles.ui.loom.take_result": "Loom used",
"subtitles.ui.stonecutter.take_result": "Stonecutter used",
"subtitles.weather.rain": "Rain falls",
"symlink_warning.title": "World folder contains symbolic links",
"symlink_warning.message": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.",
"team.collision.always": "Always",
"team.collision.never": "Never",
"team.collision.pushOtherTeams": "Push other teams",

View file

@ -10,7 +10,6 @@ use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundSectionBlocksUpdatePacket {
pub section_pos: ChunkSectionPos,
pub suppress_light_updates: bool,
pub states: Vec<BlockStateWithPosition>,
}

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 = 1073741962;
pub const PROTOCOL_VERSION: u32 = 763;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ConnectionProtocol {