forgot this one (#26278)

This commit is contained in:
ShiftyRail
2020-04-22 16:45:55 +02:00
committed by GitHub
parent e33b8b1928
commit cf36c8b1d6

View File

@@ -206,7 +206,7 @@ proc/quick_AStar(start,end,adjacent,dist,maxnodes,maxnodedepth = 30,mintargetdis
return 0
//initialization
open.Enqueue(new /PathNode(start,null,0,call(start,dist)(end),0,"unique"))
open.Enqueue(new /PathNode(start,null,0,call(start,dist)(end),0,"unique_[reference]"))
//then run the main loop
while(!open.IsEmpty() && !path)