aboutsummaryrefslogtreecommitdiff
path: root/azalea/src
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-02 19:24:39 -1300
committermat <git@matdoes.dev>2025-06-03 02:41:25 -0600
commitcc3e64a3151398046408a7b97c339d32700cc541 (patch)
treef2ea5a27ae52b1dbb69997f61daf3a5f00369e94 /azalea/src
parent61443fa481aeb6f9b488bf9475c512554a58473d (diff)
downloadazalea-drasl-cc3e64a3151398046408a7b97c339d32700cc541.tar.xz
fix collisions bugs
Diffstat (limited to 'azalea/src')
-rw-r--r--azalea/src/pathfinder/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs
index b05d2aab..c4586d29 100644
--- a/azalea/src/pathfinder/mod.rs
+++ b/azalea/src/pathfinder/mod.rs
@@ -1569,7 +1569,7 @@ mod tests {
simulation.app.world_mut().send_event(GotoEvent {
entity: simulation.entity,
- goal: Arc::new(BlockPosGoal(BlockPos::new(0, 70, 0))),
+ goal: Arc::new(BlockPosGoal(BlockPos::new(0, 69, 0))),
successors_fn: moves::default_move,
allow_mining: true,
min_timeout: PathfinderTimeout::Nodes(1_000_000),