diff --git a/CHANGELOG.md b/CHANGELOG.md index 52a6457d..b0547f05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ is breaking anyways, semantic versioning is not followed. ### Added +- Update to Minecraft 1.21.6. - `HitResult` now contains the entity that's being looked at. ### Changed @@ -20,7 +21,7 @@ is breaking anyways, semantic versioning is not followed. ### Fixed -## [0.13.0] - 2025-06-15 +## [0.13.0+mc1.21.5] - 2025-06-15 ### Added diff --git a/azalea/benches/pathfinder.rs b/azalea/benches/pathfinder.rs index 48736cef..aff6c00c 100644 --- a/azalea/benches/pathfinder.rs +++ b/azalea/benches/pathfinder.rs @@ -47,7 +47,7 @@ fn generate_bedrock_world( azalea_registry::Block::Bedrock.into(), chunks.min_y, ); - if rng.gen_bool(0.5) { + if rng.random_bool(0.5) { chunk.set_block_state( &ChunkBlockPos::new(x, 2, z), azalea_registry::Block::Bedrock.into(), diff --git a/azalea/examples/testbot/killaura.rs b/azalea/examples/testbot/killaura.rs index 728d92f8..093495ea 100644 --- a/azalea/examples/testbot/killaura.rs +++ b/azalea/examples/testbot/killaura.rs @@ -2,7 +2,7 @@ use azalea::{ ecs::prelude::*, entity::{Dead, LocalEntity, Position, metadata::AbstractMonster}, prelude::*, - world::{InstanceName, MinecraftEntityId}, + world::InstanceName, }; use crate::State;