fixed, or at least. in the rightr place now, so its fine.

pull/1/head
Valerie 2022-05-29 13:08:01 -04:00
parent f6ed9576f6
commit 7ae222c988
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ public class AStarPathfinder implements IPathfinder {
}
private Node getPathfindingNode(int x, int y, List<Node> open, List<Node> closed, Node parent, int dstX, int dstY) {
// TODO this isnt necessarily the BOUNDS so... think about that.
if(pathable.isOutOfBounds(x, y)) {
return null;
}