Skip to content

Commit

Permalink
23w44a
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Nov 6, 2023
1 parent 4523064 commit 3e1e95d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 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: `23w43a`.*
*Currently supported Minecraft version: `23w44a`.*

> **Warning**
> Azalea is still very unfinished, though most crates are in a somewhat useable state
Expand Down
7 changes: 7 additions & 0 deletions azalea-language/src/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -2370,6 +2370,7 @@
"commands.datapack.unknown": "Unknown data pack '%s'",
"commands.debug.alreadyRunning": "The tick profiler is already started",
"commands.debug.function.noRecursion": "Can't trace from inside of function",
"commands.debug.function.noReturnRun": "Tracing can't be used with return run",
"commands.debug.function.success.multiple": "Traced %s command(s) from %s functions to output file %s",
"commands.debug.function.success.single": "Traced %s command(s) from function '%s' to output file %s",
"commands.debug.function.traceFailed": "Failed to trace function",
Expand Down Expand Up @@ -4674,6 +4675,8 @@
"mco.minigame.world.title": "Switch realm to minigame",
"mco.news": "Realms news",
"mco.notification.dismiss": "Dismiss",
"mco.notification.transferSubscription.buttonText": "Transfer Now",
"mco.notification.transferSubscription.message": "Java Realms subscriptions are moving to the Microsoft Store. Do not let your subscription expire!\nTransfer now and get 30 days of Realms for free.\nGo to Profile on minecraft.net to transfer your subscription.",
"mco.notification.visitUrl.buttonText.default": "Open link",
"mco.notification.visitUrl.message.default": "Please visit the link below",
"mco.question": "Question",
Expand Down Expand Up @@ -5654,6 +5657,10 @@
"subtitles.block.conduit.ambient": "Conduit pulses",
"subtitles.block.conduit.attack.target": "Conduit attacks",
"subtitles.block.conduit.deactivate": "Conduit deactivates",
"subtitles.block.copper_bulb.turn_off": "Copper Bulb turns off",
"subtitles.block.copper_bulb.turn_on": "Copper Bulb turns on",
"subtitles.block.copper_trapdoor.close": "Trapdoor closes",
"subtitles.block.copper_trapdoor.open": "Trapdoor opens",
"subtitles.block.crafter.craft": "Crafter crafts",
"subtitles.block.crafter.fail": "Crafter fails crafting",
"subtitles.block.decorated_pot.insert": "Decorated Pot fills",
Expand Down
2 changes: 1 addition & 1 deletion azalea-protocol/src/packets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::io::{Cursor, Write};
// TODO: rename the packet files to just like clientbound_add_entity instead of
// clientbound_add_entity_packet

pub const PROTOCOL_VERSION: u32 = 1073741983;
pub const PROTOCOL_VERSION: u32 = 1073741985;

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

0 comments on commit 3e1e95d

Please sign in to comment.