Parcourir la source

LibChess: Use the correct command type for InfoCommand

Tim Ledbetter il y a 2 ans
Parent
commit
77f3e9710b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Userland/Libraries/LibChess/UCICommand.h

+ 1 - 1
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)
     {
     }