Skip to content

Commit c3313a1

Browse files
authored
pathfinder: fix typo in rustg_remove_node_astar (tgstation#162)
1 parent 79f04b1 commit c3313a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dmsrc/pathfinder.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
*/
2222
#define rustg_add_node_astar(json) RUSTG_CALL(RUST_G, "add_node_astar")(json)
2323

24-
/**²
24+
/**
2525
* Remove every link to the node with unique_id. Replace that node by null
2626
*/
27-
#define rustg_remove_node_astart(unique_id) RUSTG_CALL(RUST_G, "remove_node_astar")(unique_id)
27+
#define rustg_remove_node_astar(unique_id) RUSTG_CALL(RUST_G, "remove_node_astar")(unique_id)
2828

2929
/**
3030
* Compute the shortest path between start_node and goal_node using A*. Heuristic used is simple geometric distance

0 commit comments

Comments
 (0)