From 9984ab49fbe243a3b28bed0a167a41d1685017fd Mon Sep 17 00:00:00 2001 From: doomtube Date: Thu, 8 Jan 2026 01:28:58 -0500 Subject: [PATCH] fixes lol --- nakama/go-modules/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nakama/go-modules/main.go b/nakama/go-modules/main.go index 4b5bc5a..1cb555f 100644 --- a/nakama/go-modules/main.go +++ b/nakama/go-modules/main.go @@ -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 }