aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/pathfinder/execute/mod.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-03-06 11:12:07 +0500
committermat <git@matdoes.dev>2026-03-06 11:12:07 +0500
commit8dc511bb1b77da67d5428e8bafeab92ad3bfabf4 (patch)
treeb155417c3470412bc9dcf2f39f8440f71c805335 /azalea/src/pathfinder/execute/mod.rs
parent62eb3ec38cca04ac09156bb2693a9f8ca82b3da6 (diff)
downloadazalea-drasl-8dc511bb1b77da67d5428e8bafeab92ad3bfabf4.tar.xz
fix various regressions from optimization attempts
Diffstat (limited to 'azalea/src/pathfinder/execute/mod.rs')
-rw-r--r--azalea/src/pathfinder/execute/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/azalea/src/pathfinder/execute/mod.rs b/azalea/src/pathfinder/execute/mod.rs
index d022885c..f4214054 100644
--- a/azalea/src/pathfinder/execute/mod.rs
+++ b/azalea/src/pathfinder/execute/mod.rs
@@ -26,7 +26,7 @@ use crate::{
system::{Commands, Query, Res},
},
pathfinder::{
- ExecutingPath, GotoEvent, Pathfinder,
+ ExecutingPath, GotoEvent, Pathfinder, PathfinderSystems,
astar::PathfinderTimeout,
custom_state::CustomPathfinderState,
debug::debug_render_path_with_particles,
@@ -60,7 +60,8 @@ impl Plugin for DefaultPathfinderExecutionPlugin {
.after(PhysicsSystems)
.after(azalea_client::movement::send_position)
.after(MiningSystems)
- .after(debug_render_path_with_particles),
+ .after(debug_render_path_with_particles)
+ .in_set(PathfinderSystems),
);
}
}