1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
This commit is contained in:
Ubuntu 2022-11-09 17:21:00 +00:00
parent f1aeca5087
commit ad12ddcb00
3 changed files with 5 additions and 5 deletions

View file

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

View file

@ -9,7 +9,7 @@ use std::io::{Cursor, Write};
// TODO: rename the packet files to just like clientbound_add_entity instead of clientbound_add_entity_packet // TODO: rename the packet files to just like clientbound_add_entity instead of clientbound_add_entity_packet
pub const PROTOCOL_VERSION: u32 = 1073741930; pub const PROTOCOL_VERSION: u32 = 1073741931;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ConnectionProtocol { pub enum ConnectionProtocol {

View file

@ -116,9 +116,9 @@ if old_ordered_blocks != new_ordered_blocks:
block_states_report = lib.extract.get_block_states_report(new_version_id) block_states_report = lib.extract.get_block_states_report(new_version_id)
shape_datas = lib.extract.get_pixlyzer_data( shape_datas = lib.extract.get_pixlyzer_data(
version_id, 'shapes') new_version_id, 'shapes')
pixlyzer_block_datas = lib.extract.get_pixlyzer_data( pixlyzer_block_datas = lib.extract.get_pixlyzer_data(
version_id, 'blocks') new_version_id, 'blocks')
lib.code.blocks.generate_blocks( lib.code.blocks.generate_blocks(
block_states_burger, block_states_report, new_ordered_blocks, new_mappings) block_states_burger, block_states_report, new_ordered_blocks, new_mappings)