diff options
| author | mat <git@matdoes.dev> | 2026-01-17 11:58:37 -1030 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-01-17 11:58:37 -1030 |
| commit | 74ef7d19b2bc4453f5368cc39c838582f2f3bafd (patch) | |
| tree | cd133a77934f461b52db614eb10a99eb620f53e6 /azalea/src/pathfinder/mod.rs | |
| parent | a49c8d0b53fed223bab127704c604291ee77f921 (diff) | |
| download | azalea-drasl-74ef7d19b2bc4453f5368cc39c838582f2f3bafd.tar.xz | |
use more compact chunk section positions in pathfinder
Diffstat (limited to 'azalea/src/pathfinder/mod.rs')
| -rw-r--r-- | azalea/src/pathfinder/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs index cab30f7a..9a75f868 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -13,7 +13,7 @@ pub mod goals; mod goto_event; pub mod mining; pub mod moves; -pub mod rel_block_pos; +pub mod positions; pub mod simulation; #[cfg(test)] mod tests; @@ -55,7 +55,7 @@ use futures_lite::future; use goals::BlockPosGoal; pub use goto_event::{GotoEvent, PathfinderOpts}; use parking_lot::RwLock; -use rel_block_pos::RelBlockPos; +use positions::RelBlockPos; use tokio::sync::broadcast::error::RecvError; use tracing::{debug, error, info, trace, warn}; |
