diff options
| author | mat <github@matdoes.dev> | 2023-01-21 22:25:22 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-01-21 22:25:22 -0600 |
| commit | c652bbc6091212811133466914e7ef39e61a7b21 (patch) | |
| tree | c2eef8d242e07054af9ae9df6f8af7a6a3e630f2 /azalea/src | |
| parent | 9ee5e71bb13e596248fde000d8717c86276b0ce1 (diff) | |
| download | azalea-drasl-c652bbc6091212811133466914e7ef39e61a7b21.tar.xz | |
clippy
Diffstat (limited to 'azalea/src')
| -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 a1619c41..de62e9a7 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -84,7 +84,7 @@ impl Trait for azalea_client::Client { for possible_move in possible_moves.iter() { edges.push(Edge { target: possible_move.next_node(node), - cost: possible_move.cost(&world, node), + cost: possible_move.cost(world, node), }); } edges |
