diff --git a/src/Lynx/Search/Helpers.cs b/src/Lynx/Search/Helpers.cs index d0110c5fc..ea5fd6a86 100644 --- a/src/Lynx/Search/Helpers.cs +++ b/src/Lynx/Search/Helpers.cs @@ -140,13 +140,6 @@ internal int ScoreMove(Move move, int ply, ShortMove bestMoveTTCandidate) [MethodImpl(MethodImplOptions.AggressiveInlining)] internal int ScoreMoveQuiescence(Move move, int ply, ShortMove bestMoveTTCandidate) { - if (_isScoringPV && move == _pVTable[ply]) - { - _isScoringPV = false; - - return EvaluationConstants.PVMoveScoreValue; - } - if ((ShortMove)move == bestMoveTTCandidate) { return EvaluationConstants.TTMoveScoreValue;