aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/pathfinder/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/src/pathfinder/mod.rs')
-rw-r--r--azalea/src/pathfinder/mod.rs4
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};