fixes lol
Some checks failed
Build and Push / build-all (push) Failing after 55s

This commit is contained in:
doomtube 2026-01-08 01:28:58 -05:00
parent 32a19f24ea
commit 9984ab49fb

View file

@ -757,8 +757,8 @@ func validateChessMove(fenStr, from, to, promotion string) MoveResult {
return result
}
// Make the move
if err := game.Move(validMove); err != nil {
// Make the move (second arg is options, nil for default)
if err := game.Move(validMove, nil); err != nil {
return result
}