diff --git a/src/search.cpp b/src/search.cpp index 349d4389..582e4457 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1104,7 +1104,7 @@ moves_loop: // When in check, search starts here // If the eval of ttMove is greater than beta, we reduce it (negative extension) else if (ttValue >= beta) - extension = -2; + extension = -2 - !PvNode; // If the eval of ttMove is less than value, we reduce it (negative extension) else if (ttValue <= value)