Skip to content

Commit 1199985

Browse files
committed
1.21.11-rc3
1 parent 3f38e67 commit 1199985

File tree

5 files changed

+46
-32
lines changed

5 files changed

+46
-32
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-pre3"
25+
version = "0.14.0+mc1.21.11-rc3"
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-pre3`._
13+
_Currently supported Minecraft version: `1.21.11-rc3`._
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-inventory/src/default_components/generated.rs

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5835,43 +5835,57 @@ impl DefaultableComponent for AttackRange {
58355835
let value = match item {
58365836
Item::CopperSpear => AttackRange {
58375837
hitbox_margin: 0.125,
5838+
max_creative_reach: 6.5,
58385839
max_reach: 4.5,
5840+
min_creative_reach: 2.0,
58395841
min_reach: 2.0,
58405842
mob_factor: 0.5,
58415843
},
58425844
Item::DiamondSpear => AttackRange {
58435845
hitbox_margin: 0.125,
5846+
max_creative_reach: 6.5,
58445847
max_reach: 4.5,
5848+
min_creative_reach: 2.0,
58455849
min_reach: 2.0,
58465850
mob_factor: 0.5,
58475851
},
58485852
Item::GoldenSpear => AttackRange {
58495853
hitbox_margin: 0.125,
5854+
max_creative_reach: 6.5,
58505855
max_reach: 4.5,
5856+
min_creative_reach: 2.0,
58515857
min_reach: 2.0,
58525858
mob_factor: 0.5,
58535859
},
58545860
Item::IronSpear => AttackRange {
58555861
hitbox_margin: 0.125,
5862+
max_creative_reach: 6.5,
58565863
max_reach: 4.5,
5864+
min_creative_reach: 2.0,
58575865
min_reach: 2.0,
58585866
mob_factor: 0.5,
58595867
},
58605868
Item::NetheriteSpear => AttackRange {
58615869
hitbox_margin: 0.125,
5870+
max_creative_reach: 6.5,
58625871
max_reach: 4.5,
5872+
min_creative_reach: 2.0,
58635873
min_reach: 2.0,
58645874
mob_factor: 0.5,
58655875
},
58665876
Item::StoneSpear => AttackRange {
58675877
hitbox_margin: 0.125,
5878+
max_creative_reach: 6.5,
58685879
max_reach: 4.5,
5880+
min_creative_reach: 2.0,
58695881
min_reach: 2.0,
58705882
mob_factor: 0.5,
58715883
},
58725884
Item::WoodenSpear => AttackRange {
58735885
hitbox_margin: 0.125,
5886+
max_creative_reach: 6.5,
58745887
max_reach: 4.5,
5888+
min_creative_reach: 2.0,
58755889
min_reach: 2.0,
58765890
mob_factor: 0.5,
58775891
},
@@ -5914,7 +5928,7 @@ impl DefaultableComponent for KineticWeapon {
59145928
forward_movement: 0.38,
59155929
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
59165930
knockback_conditions: Some(KineticWeaponCondition {
5917-
max_duration_ticks: 100,
5931+
max_duration_ticks: 165,
59185932
min_speed: 5.1,
59195933
..KineticWeaponCondition::new()
59205934
}),
@@ -5937,7 +5951,7 @@ impl DefaultableComponent for KineticWeapon {
59375951
forward_movement: 0.38,
59385952
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
59395953
knockback_conditions: Some(KineticWeaponCondition {
5940-
max_duration_ticks: 80,
5954+
max_duration_ticks: 130,
59415955
min_speed: 5.1,
59425956
..KineticWeaponCondition::new()
59435957
}),
@@ -5960,7 +5974,7 @@ impl DefaultableComponent for KineticWeapon {
59605974
forward_movement: 0.38,
59615975
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
59625976
knockback_conditions: Some(KineticWeaponCondition {
5963-
max_duration_ticks: 110,
5977+
max_duration_ticks: 170,
59645978
min_speed: 5.1,
59655979
..KineticWeaponCondition::new()
59665980
}),
@@ -5983,7 +5997,7 @@ impl DefaultableComponent for KineticWeapon {
59835997
forward_movement: 0.38,
59845998
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
59855999
knockback_conditions: Some(KineticWeaponCondition {
5986-
max_duration_ticks: 90,
6000+
max_duration_ticks: 135,
59876001
min_speed: 5.1,
59886002
..KineticWeaponCondition::new()
59896003
}),
@@ -6006,7 +6020,7 @@ impl DefaultableComponent for KineticWeapon {
60066020
forward_movement: 0.38,
60076021
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
60086022
knockback_conditions: Some(KineticWeaponCondition {
6009-
max_duration_ticks: 70,
6023+
max_duration_ticks: 110,
60106024
min_speed: 5.1,
60116025
..KineticWeaponCondition::new()
60126026
}),
@@ -6029,7 +6043,7 @@ impl DefaultableComponent for KineticWeapon {
60296043
forward_movement: 0.38,
60306044
hit_sound: Some(azalea_registry::Holder::Reference(SoundEvent::ItemSpearHit)),
60316045
knockback_conditions: Some(KineticWeaponCondition {
6032-
max_duration_ticks: 110,
6046+
max_duration_ticks: 180,
60336047
min_speed: 5.1,
60346048
..KineticWeaponCondition::new()
60356049
}),
@@ -6054,7 +6068,7 @@ impl DefaultableComponent for KineticWeapon {
60546068
SoundEvent::ItemSpearWoodHit,
60556069
)),
60566070
knockback_conditions: Some(KineticWeaponCondition {
6057-
max_duration_ticks: 120,
6071+
max_duration_ticks: 200,
60586072
min_speed: 5.1,
60596073
..KineticWeaponCondition::new()
60606074
}),

azalea-protocol/src/packets/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ use azalea_buf::{AzaleaReadVar, AzaleaWrite, AzaleaWriteVar, BufReadError};
1111

1212
use crate::read::ReadPacketError;
1313

14-
pub const PROTOCOL_VERSION: i32 = 1073742105;
15-
pub const VERSION_NAME: &str = "1.21.11-pre3";
14+
pub const PROTOCOL_VERSION: i32 = 1073742110;
15+
pub const VERSION_NAME: &str = "1.21.11-rc3";
1616

1717
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
1818
pub enum ConnectionProtocol {

0 commit comments

Comments
 (0)