Skip to content

Commit 6eb63fe

Browse files
committed
start updating to 26.1-snapshot-6
1 parent b5244b5 commit 6eb63fe

File tree

25 files changed

+3962
-9494
lines changed

25 files changed

+3962
-9494
lines changed

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resolver = "3"
2222
# --- Workspace Settings ---
2323

2424
[workspace.package]
25-
version = "0.14.0+mc1.21.11"
25+
version = "0.14.0+mc26.1-snapshot-6"
2626
edition = "2024"
2727
license = "MIT"
2828
repository = "https://github.com/azalea-rs/azalea"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A collection of Rust crates for making Minecraft bots, clients, and tools.
1010

1111
<!-- The line below is automatically read and updated by the migrate script, so don't change it manually. -->
1212

13-
_Currently supported Minecraft version: `1.21.11`._
13+
_Currently supported Minecraft version: `26.1-snapshot-6`._
1414

1515
> [!WARNING]
1616
> Many parts of Azalea are still unfinished and will receive breaking changes in the future. Most breaking changes will be listed in the [changelog](CHANGELOG.md).

azalea-block/src/generated.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2438,6 +2438,7 @@ make_block_states! {
24382438
"facing": FacingCubic::North,
24392439
},
24402440
dandelion => BlockBehavior::new(), {},
2441+
golden_dandelion => BlockBehavior::new(), {},
24412442
torchflower => BlockBehavior::new(), {},
24422443
poppy => BlockBehavior::new(), {},
24432444
blue_orchid => BlockBehavior::new(), {},
@@ -3365,6 +3366,7 @@ make_block_states! {
33653366
potted_mangrove_propagule => BlockBehavior::new(), {},
33663367
potted_fern => BlockBehavior::new(), {},
33673368
potted_dandelion => BlockBehavior::new(), {},
3369+
potted_golden_dandelion => BlockBehavior::new(), {},
33683370
potted_poppy => BlockBehavior::new(), {},
33693371
potted_blue_orchid => BlockBehavior::new(), {},
33703372
potted_allium => BlockBehavior::new(), {},

azalea-entity/src/dimensions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ impl From<EntityKind> for EntityDimensions {
170170
EntityKind::Player => EntityDimensions::new(0.6, 1.8).eye_height(1.62),
171171
EntityKind::PolarBear => EntityDimensions::new(1.4, 1.4),
172172
EntityKind::Pufferfish => EntityDimensions::new(0.7, 0.7).eye_height(0.455),
173-
EntityKind::Rabbit => EntityDimensions::new(0.4, 0.5),
173+
EntityKind::Rabbit => EntityDimensions::new(0.49, 0.6).eye_height(0.63),
174174
EntityKind::Ravager => EntityDimensions::new(1.95, 2.2),
175175
EntityKind::Salmon => EntityDimensions::new(0.7, 0.4).eye_height(0.26),
176176
EntityKind::Sheep => EntityDimensions::new(0.9, 1.3).eye_height(1.235),

0 commit comments

Comments
 (0)