Skip to content

Commit

Permalink
Fix malformed UCI option NoobBookMode (#712)
Browse files Browse the repository at this point in the history
The option declaration was missing 'type'

Bench: 23621947
  • Loading branch information
skiminki authored Mar 16, 2024
1 parent 25316d1 commit df6e285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uci.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static void Info() {
printf("option name MultiPV type spin default 1 min 1 max %d\n", MULTI_PV_MAX);
printf("option name UCI_Chess960 type check default false\n");
printf("option name NoobBook type check default false\n");
printf("option name NoobBookMode string default <best>\n");
printf("option name NoobBookMode type string default <best>\n");
printf("option name NoobBookLimit type spin default 0 min 0 max 1000\n");
printf("option name OnlineSyzygy type check default false\n");
printf("uciok\n"); fflush(stdout);
Expand Down

0 comments on commit df6e285

Please sign in to comment.