diff --git a/src/search.c b/src/search.c index a2af91c2..fd5fe074 100644 --- a/src/search.c +++ b/src/search.c @@ -140,6 +140,8 @@ static int Quiescence(Thread *thread, Stack *ss, int alpha, const int beta) { // Avoid pruning until at least one move avoids a terminal loss score if (bestScore <= -TBWIN_IN_MAX) goto search; + mp.onlyNoisy = true; + // Only try moves the movepicker deems good if (mp.stage > NOISY_GOOD) break;