X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=644fc4738acbaf41ef84549afa5e7ade86d50403;hp=8d625bd9fe553510fce79ff0cf4e538131666e62;hb=54f8a9cb138a1bc0b0054b98f911fafd8d1b03ad;hpb=ad937d0b2d2a9450686b9f3412c891a68ff19310 diff --git a/src/uci.cpp b/src/uci.cpp index 8d625bd9..644fc473 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -202,7 +202,7 @@ void UCI::loop(int argc, char* argv[]) { Search::RootColor = pos.side_to_move(); // Ensure it is set sync_cout << Eval::trace(pos) << sync_endl; } - else if (token == "ucinewgame") TT.clear(); + else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ } else if (token == "go") go(pos, is); else if (token == "position") position(pos, is); else if (token == "setoption") setoption(is);