Fix black queen promotion

This commit is contained in:
Elnu 2023-03-16 12:39:35 -07:00
parent 851c2f401d
commit 101054091d

View file

@ -24,7 +24,7 @@ public class Pawn extends Piece {
if (board.get(position.x + 1, position.y + 1) != null) { if (board.get(position.x + 1, position.y + 1) != null) {
possibleMoves.add(new Move(position, new BoardCoordinate(position.x + 1,position.y + 1))); possibleMoves.add(new Move(position, new BoardCoordinate(position.x + 1,position.y + 1)));
} }
for (Move move : possibleMoves) move.isPromotion = position.y + 1 == 0; for (Move move : possibleMoves) move.isPromotion = position.y + 1 == Board.BOARD_SIZE - 1;
} else { } else {
if (board.get(position.x, position.y - 1) == null) { if (board.get(position.x, position.y - 1) == null) {
possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y - 1))); possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y - 1)));