From 98e5efb577ebb0b2671c3164c3a8bb7c398b47ea Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 21 Dec 2024 02:57:19 +0000 Subject: [PATCH] fix flakey pathfinder tests by moving stop_pathfinding_on_instance_change to be before path_found_listener --- azalea/src/pathfinder/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs index 78aafc2f8..431c0212f 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -84,8 +84,8 @@ impl Plugin for PathfinderPlugin { ( goto_listener, handle_tasks, - path_found_listener, stop_pathfinding_on_instance_change, + path_found_listener, handle_stop_pathfinding_event, ) .chain()