forked from mirror/openmw-tes3mp
A* misses 1st closest node fix
This commit is contained in:
parent
f596b698d9
commit
01810f24b0
1 changed files with 6 additions and 0 deletions
|
@ -328,6 +328,12 @@ namespace MWMechanics
|
||||||
path.push_front(pt);
|
path.push_front(pt);
|
||||||
current = graphParent[current];
|
current = graphParent[current];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// add first node to path explicitly
|
||||||
|
ESM::Pathgrid::Point pt = mPathgrid->mPoints[start];
|
||||||
|
pt.mX += xCell;
|
||||||
|
pt.mY += yCell;
|
||||||
|
path.push_front(pt);
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue