From 77f3e9710beb2f33f6596ad6702d62b179f3cb4c Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Thu, 20 Apr 2023 10:14:19 +0100 Subject: [PATCH] LibChess: Use the correct command type for InfoCommand --- Userland/Libraries/LibChess/UCICommand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibChess/UCICommand.h b/Userland/Libraries/LibChess/UCICommand.h index 8a992041087..e6e704d8232 100644 --- a/Userland/Libraries/LibChess/UCICommand.h +++ b/Userland/Libraries/LibChess/UCICommand.h @@ -247,7 +247,7 @@ private: class InfoCommand : public Command { public: explicit InfoCommand() - : Command(Command::Type::BestMove) + : Command(Command::Type::Info) { }