For my npc movement AI I'm using godot's built in AStar class, it works pretty well except that when there are 2 possible paths (for example, go up then right or go right then up) it always picks the same one (right first then up), it's never random.
How could I include randomness to the paths?