Skip to content

Commit

Permalink
Updated ExtractTask
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Jan 11, 2025
1 parent 3b454eb commit 3405e8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Command/Game/Async/ExtractTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public function run()
}

return [
'steinitz' => SanExtractor::steinitz($f, $board, $this->params['movetext']),
'mean' => SanExtractor::mean($f, $board, $this->params['movetext']),
'sd' => SanExtractor::sd($f, $board, $this->params['movetext']),
'steinitz' => SanExtractor::steinitz($f, $board->clone(), $this->params['movetext']),
'mean' => SanExtractor::mean($f, $board->clone(), $this->params['movetext']),
'sd' => SanExtractor::sd($f, $board->clone(), $this->params['movetext']),
];
}
}

0 comments on commit 3405e8a

Please sign in to comment.