diff --git a/src/search.cpp b/src/search.cpp index a82b4edf0..cdbc95318 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1206,8 +1206,7 @@ moves_loop: // When in check, search starts here if ((ss + 1)->cutoffCnt > 2) r += 1036 + allNode * 848; - if (!capture && !givesCheck && ss->quietMoveStreak >= 2) - r += (ss->quietMoveStreak - 1) * 50; + r += (ss + 1)->quietMoveStreak * 50; // For first picked move (ttMove) reduce reduction if (move == ttData.move)