Skip to content

Commit

Permalink
update to 1.21.2 except for blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Oct 23, 2024
1 parent f3c5bff commit c3fa768
Show file tree
Hide file tree
Showing 19 changed files with 892 additions and 454 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A collection of Rust crates for making Minecraft bots, clients, and tools.

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

_Currently supported Minecraft version: `24w39a`._
_Currently supported Minecraft version: `1.21.2`._

> [!WARNING]
> Azalea is still very unfinished, though most crates are in a somewhat useable state
Expand Down
8 changes: 5 additions & 3 deletions azalea-client/src/packet_handling/game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,6 @@ pub fn process_packet_events(ecs: &mut World) {
ClientboundGamePacket::EntityEvent(_p) => {
// debug!("Got entity event packet {p:?}");
}
ClientboundGamePacket::Recipe(_p) => {
debug!("Got recipe packet");
}
ClientboundGamePacket::PlayerPosition(p) => {
debug!("Got player position packet {p:?}");

Expand Down Expand Up @@ -1483,6 +1480,11 @@ pub fn process_packet_events(ecs: &mut World) {
ClientboundGamePacket::ProjectilePower(_) => {}
ClientboundGamePacket::CustomReportDetails(_) => {}
ClientboundGamePacket::ServerLinks(_) => {}
ClientboundGamePacket::EntityPositionSync(_) => {}
ClientboundGamePacket::PlayerRotation(_) => {}
ClientboundGamePacket::RecipeBookAdd(_) => {}
ClientboundGamePacket::RecipeBookRemove(_) => {}
ClientboundGamePacket::RecipeBookSettings(_) => {}
}
}
}
Expand Down
Loading

0 comments on commit c3fa768

Please sign in to comment.