diff options
author | Tim Ledbetter <timledbetter@gmail.com> | 2023-04-20 10:14:19 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2023-05-03 08:31:34 +0100 |
commit | 77f3e9710beb2f33f6596ad6702d62b179f3cb4c (patch) | |
tree | e14ee44392a392ba0244c13d7e5823e00ff437cd /Userland/Libraries/LibChess | |
parent | fe40a7b664bf8726a0f0ece4cd0c151d6f6dd3fc (diff) | |
download | serenity-77f3e9710beb2f33f6596ad6702d62b179f3cb4c.zip |
LibChess: Use the correct command type for InfoCommand
Diffstat (limited to 'Userland/Libraries/LibChess')
-rw-r--r-- | Userland/Libraries/LibChess/UCICommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibChess/UCICommand.h b/Userland/Libraries/LibChess/UCICommand.h index 8a99204108..e6e704d823 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) { } |