Strategy #31

Merged
schrom01 merged 24 commits from Strategy into main 2022-03-25 09:24:21 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 448e34e869 - Show all commits

View File

@ -142,7 +142,7 @@ public class PathFinderMoveStrategy implements MoveStrategy{
@Override @Override
public PositionVector.Direction nextMove() { public PositionVector.Direction nextMove() { //TODO check for crash and recreate movelist if crash
pointer += 1; pointer += 1;
if (pointer < moveList.size()) { if (pointer < moveList.size()) {
return moveList.get(pointer); return moveList.get(pointer);