We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8f22b commit ff1e732Copy full SHA for ff1e732
Chess-Challenge/src/Framework/Chess/Board/Board.cs
@@ -404,8 +404,7 @@ public void MakeNullMove()
404
currentGameState = newState;
405
gameStateHistory.Push(currentGameState);
406
UpdateSliderBitboards();
407
- hasCachedInCheckValue = true;
408
- cachedInCheckValue = false;
+ hasCachedInCheckValue = false;
409
}
410
411
public void UnmakeNullMove()
@@ -416,8 +415,7 @@ public void UnmakeNullMove()
416
415
gameStateHistory.Pop();
417
currentGameState = gameStateHistory.Peek();
418
419
420
421
422
423
0 commit comments