diff options
| author | mat <git@matdoes.dev> | 2023-06-12 14:35:00 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-06-12 14:35:00 -0500 |
| commit | 49f951688e4ab117ee2719a9db573bd731c4748a (patch) | |
| tree | a9b3ef18254395a9a7ecd1191f5cb66e375d6670 | |
| parent | 8be3921ad450958ac9bc8c1911ecd65760ea42b6 (diff) | |
| download | azalea-drasl-49f951688e4ab117ee2719a9db573bd731c4748a.tar.xz | |
1.20
| -rwxr-xr-x | README.md | 2 | ||||
| -rwxr-xr-x | azalea-language/src/en_us.json | 4 | ||||
| -rwxr-xr-x | azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs | 1 | ||||
| -rwxr-xr-x | azalea-protocol/src/packets/mod.rs | 2 |
4 files changed, 6 insertions, 3 deletions
@@ -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 diff --git a/azalea-language/src/en_us.json b/azalea-language/src/en_us.json index 0888fa83..47072042 100755 --- a/azalea-language/src/en_us.json +++ b/azalea-language/src/en_us.json @@ -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", diff --git a/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs b/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs index 4b830fd5..aeec52fc 100755 --- a/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs +++ b/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs @@ -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>, } diff --git a/azalea-protocol/src/packets/mod.rs b/azalea-protocol/src/packets/mod.rs index 814fe121..a9e2948c 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 = 1073741962; +pub const PROTOCOL_VERSION: u32 = 763; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum ConnectionProtocol { |
