Skip to content

Commit

Permalink
split pathfinder execution into multiple systems (and fix some bugs)
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Oct 8, 2023
1 parent 9281e4f commit 971f42e
Show file tree
Hide file tree
Showing 5 changed files with 350 additions and 191 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A collection of Rust crates for making Minecraft bots, clients, and tools.
## Features

- [Accurate physics](https://github.com/azalea-rs/azalea/blob/main/azalea-physics/src/lib.rs) (but some features like knockback and water physics aren't yet implemented)
- [Pathfinder](https://azalea.matdoes.dev/azalea/pathfinder/index.html) (parkour isn't perfect yet)
- [Pathfinder](https://azalea.matdoes.dev/azalea/pathfinder/index.html)
- [Swarms](https://azalea.matdoes.dev/azalea/swarm/index.html)
- [Breaking blocks](https://azalea.matdoes.dev/azalea/struct.Client.html#method.mine)
- [Block interactions & building](https://azalea.matdoes.dev/azalea/struct.Client.html#method.block_interact) (this doesn't predict the block interactions/placement on the client yet but it's usually fine)
Expand Down
1 change: 1 addition & 0 deletions azalea/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#![feature(async_fn_in_trait)]
#![feature(type_changing_struct_update)]
#![feature(lazy_cell)]
#![feature(let_chains)]

pub mod accept_resource_packs;
mod auto_respawn;
Expand Down
Loading

0 comments on commit 971f42e

Please sign in to comment.