Fix blocking checkmate
This commit is contained in:
parent
e178d88742
commit
5e1553aaf6
1 changed files with 0 additions and 3 deletions
|
@ -227,13 +227,10 @@ public class Board {
|
|||
if (inCheck) {
|
||||
isGameOver = true;
|
||||
for (Move move : getAllLegalMoves(!movedPiece.black)) {
|
||||
move(move);
|
||||
if (!oppositeKing.isInCheck(move, this)) {
|
||||
isGameOver = false;
|
||||
undoMove();
|
||||
break;
|
||||
}
|
||||
undoMove();
|
||||
}
|
||||
} else if (getAllLegalMoves(movedPiece.black).isEmpty()) {
|
||||
isGameOver = true;
|
||||
|
|
Reference in a new issue