counter added

This commit is contained in:
2023-10-26 20:33:22 -05:00
parent 66d5752ca9
commit 51e0098aa0
4 changed files with 10 additions and 2 deletions
@@ -331,7 +331,8 @@ private static final int cellGap = 4;
path.add(start);
Vector3fImmutable current = start;
boolean obstructed = false;
while (current.distanceSquared(goal) > 9)
int count = 0;
while (current.distanceSquared(goal) > 9 && count < 250)
{
//gather the 8 cells around the player
ArrayList<Vector3fImmutable> surroundingCells = new ArrayList<>();
@@ -346,6 +347,7 @@ private static final int cellGap = 4;
Vector3fImmutable cheapest = new Vector3fImmutable(-10000, 0, -10000);
for (Vector3fImmutable point : surroundingCells)
{
count++;
if (path.contains(point))
continue;