mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:37:46 +00:00
LibChess: Fix the ability to counter check with another check
fixes #3187,#3171
This commit is contained in:
parent
d2cb5e0f48
commit
e80d0abb2c
1 changed files with 1 additions and 5 deletions
|
@ -334,11 +334,7 @@ bool Board::in_check(Colour colour) const
|
||||||
|
|
||||||
bool check = false;
|
bool check = false;
|
||||||
Square::for_each([&](const Square& square) {
|
Square::for_each([&](const Square& square) {
|
||||||
if (is_legal({ square, king_square }, opposing_colour(colour))) {
|
if (is_legal_no_check({ square, king_square }, opposing_colour(colour))) {
|
||||||
check = true;
|
|
||||||
return IterationDecision::Break;
|
|
||||||
} else if (get_piece(square) == Piece(opposing_colour(colour), Type::King) && is_legal_no_check({ square, king_square }, opposing_colour(colour))) {
|
|
||||||
// The King is a special case, because it would be in check if it put the opposing king in check.
|
|
||||||
check = true;
|
check = true;
|
||||||
return IterationDecision::Break;
|
return IterationDecision::Break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue