diff options
| author | mat <git@matdoes.dev> | 2024-12-26 07:42:35 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-12-26 07:42:35 +0000 |
| commit | adb56b7eb2c5b54a4dccc7b5f77dd0f7d2442993 (patch) | |
| tree | 7fd35fc590f460604118a1e445f5205e8c6f9801 /azalea/src/pathfinder/mod.rs | |
| parent | 3c83e5b24a622062c490f90c7e5bde043438d517 (diff) | |
| download | azalea-drasl-adb56b7eb2c5b54a4dccc7b5f77dd0f7d2442993.tar.xz | |
make a_star function use an IndexMap like the pathfinding crate
Diffstat (limited to 'azalea/src/pathfinder/mod.rs')
| -rw-r--r-- | azalea/src/pathfinder/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs index 0b3b7591..76a1f79b 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -778,7 +778,7 @@ pub fn check_for_path_obstruction( new_path .extend(executing_path.path.iter().skip(patch_end_index).cloned()); is_patch_complete = true; - debug!("the obstruction patch is not partial"); + debug!("the obstruction patch is not partial :)"); } else { debug!( "the obstruction patch is partial, throwing away rest of path :(" |
