A bugfix for the /findlocation command, where a permanent edge to a temporary node was being created.
The error leads to redstone particles of the editmode not showing initially and to /find not working anymore.
It can be solved by deleting the loose edges from the data storage with the command
Code (Text):
DELETE FROM pathfinder_edges WHERE (SELECT count(id) FROM pathfinder_waypoints WHERE id = end_id ) = 0
In words: delete all edges where the referenced end node cannot be found in the waypoints table.
Full Changelog:
v4.0.0...v4.0.1