Movement restriction for Knight
This commit is contained in:
parent
6f51247019
commit
b5dc5a4228
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ public class Knight extends Piece {
|
|||
possibleMoves.add(new BoardCoordinate(position.x + 1, position.y + 2));
|
||||
possibleMoves.add(new BoardCoordinate(position.x - 1, position.y + 2));
|
||||
possibleMoves.add(new BoardCoordinate(position.x - 2, position.y + 1));
|
||||
// test
|
||||
return possibleMoves;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue