From c3313a1fdbf9134b572ef2c7db40b8623dd2c0a0 Mon Sep 17 00:00:00 2001 From: vvvv-vvvv <136390975+vvvv-vvvv@users.noreply.github.com> Date: Sun, 24 Dec 2023 00:31:03 +0000 Subject: [PATCH] pathfinder: fix typo in rustg_remove_node_astar (#162) --- dmsrc/pathfinder.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmsrc/pathfinder.dm b/dmsrc/pathfinder.dm index 3259aa87..60bfb0dd 100644 --- a/dmsrc/pathfinder.dm +++ b/dmsrc/pathfinder.dm @@ -21,10 +21,10 @@ */ #define rustg_add_node_astar(json) RUSTG_CALL(RUST_G, "add_node_astar")(json) -/**² +/** * Remove every link to the node with unique_id. Replace that node by null */ -#define rustg_remove_node_astart(unique_id) RUSTG_CALL(RUST_G, "remove_node_astar")(unique_id) +#define rustg_remove_node_astar(unique_id) RUSTG_CALL(RUST_G, "remove_node_astar")(unique_id) /** * Compute the shortest path between start_node and goal_node using A*. Heuristic used is simple geometric distance