Skip to content

Commit

Permalink
23w40a
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Oct 8, 2023
1 parent 971f42e commit 689185a
Show file tree
Hide file tree
Showing 7 changed files with 433 additions and 230 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2`.*
*Currently supported Minecraft version: `23w40a`.*

> **Warning**
> Azalea is still very unfinished, though most crates are in a somewhat useable state
Expand Down
46 changes: 4 additions & 42 deletions azalea-block/src/generated.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,6 @@ make_block_states! {
},
"short" => bool,
"unstable" => bool,
"slot_0_occupied" => bool,
"slot_1_occupied" => bool,
"slot_2_occupied" => bool,
"slot_3_occupied" => bool,
"slot_4_occupied" => bool,
"slot_5_occupied" => bool,
"age" => FireAge {
_0,
Expand Down Expand Up @@ -837,26 +832,6 @@ make_block_states! {
},
"locked" => bool,
"down" => bool,
"age" => PumpkinStemAge {
_0,
_1,
_2,
_3,
_4,
_5,
_6,
_7,
},
"age" => MelonStemAge {
_0,
_1,
_2,
_3,
_4,
_5,
_6,
_7,
},
"down" => bool,
"north" => bool,
"south" => bool,
Expand Down Expand Up @@ -1863,7 +1838,8 @@ make_block_states! {
_14,
_15,
},
"south" => bool,
"east" => bool,
"up" => bool,
"west" => bool,
"bloom" => bool,
"can_summon" => bool,
Expand Down Expand Up @@ -1920,7 +1896,7 @@ make_block_states! {
Partial,
Full,
},
"axis" => CacheSize {
"axis" => Falling {
X,
Y,
Z,
Expand Down Expand Up @@ -2666,7 +2642,6 @@ make_block_states! {
waterlogged: false,
west: false,
},
pumpkin => BlockBehavior::new().strength(1.0, 1.0), {},
netherrack => BlockBehavior::new().requires_correct_tool_for_drops().strength(0.4, 0.4), {},
soul_sand => BlockBehavior::new().strength(0.5, 0.5), {},
soul_soil => BlockBehavior::new().strength(0.5, 0.5), {},
Expand Down Expand Up @@ -2832,19 +2807,6 @@ make_block_states! {
waterlogged: false,
west: false,
},
melon => BlockBehavior::new().strength(1.0, 1.0), {},
attached_pumpkin_stem => BlockBehavior::new(), {
facing: FacingCardinal::North,
},
attached_melon_stem => BlockBehavior::new(), {
facing: FacingCardinal::North,
},
pumpkin_stem => BlockBehavior::new(), {
age: PumpkinStemAge::_0,
},
melon_stem => BlockBehavior::new(), {
age: MelonStemAge::_0,
},
vine => BlockBehavior::new().strength(0.2, 0.2), {
east: false,
north: false,
Expand Down Expand Up @@ -5113,7 +5075,7 @@ make_block_states! {
cracked_deepslate_bricks => BlockBehavior::new().requires_correct_tool_for_drops().strength(3.5, 6.0), {},
cracked_deepslate_tiles => BlockBehavior::new().requires_correct_tool_for_drops().strength(3.5, 6.0), {},
infested_deepslate => BlockBehavior::new().strength(1.5, 0.75), {
axis: CacheSize::Y,
axis: Falling::Y,
},
smooth_basalt => BlockBehavior::new().requires_correct_tool_for_drops().strength(1.25, 4.2), {},
raw_iron_block => BlockBehavior::new().requires_correct_tool_for_drops().strength(5.0, 6.0), {},
Expand Down
5 changes: 5 additions & 0 deletions azalea-language/src/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -2413,6 +2413,7 @@
"commands.jfr.start.failed": "Failed to start JFR profiling",
"commands.jfr.started": "JFR profiling started",
"commands.jfr.stopped": "JFR profiling stopped and dumped to %s",
"commands.kick.owner.failed": "Cannot kick server owner in LAN game",
"commands.kick.success": "Kicked %s: %s",
"commands.kill.success.multiple": "Killed %s entities",
"commands.kill.success.single": "Killed %s",
Expand Down Expand Up @@ -3516,6 +3517,7 @@
"gui.down": "Down",
"gui.entity_tooltip.type": "Type: %s",
"gui.hours": "%s hour(s)",
"gui.loadingMinecraft": "Loading Minecraft",
"gui.minutes": "%s minute(s)",
"gui.multiLineEditBox.character_limit": "%s/%s",
"gui.narrate.button": "%s button",
Expand Down Expand Up @@ -4615,6 +4617,9 @@
"mco.selectServer.purchase": "Add Realm",
"mco.selectServer.trial": "Get a trial!",
"mco.selectServer.uninitialized": "Click to start your new realm!",
"mco.snapshotRealmsPopup.message": "Realms are now available in Snapshots starting with Snapshot 23w41a. Every Realms subscription comes with a free Snapshot Realm that is separate from your normal Java Realm!",
"mco.snapshotRealmsPopup.title": "Realms now available in Snapshots",
"mco.snapshotRealmsPopup.urlText": "Learn More",
"mco.template.button.publisher": "Publisher",
"mco.template.button.select": "Select",
"mco.template.button.trailer": "Trailer",
Expand Down
Loading

0 comments on commit 689185a

Please sign in to comment.