online multiplayer chess game (note server currently down)
Diffstat (limited to 'board/chess.gd')
-rw-r--r--board/chess.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/chess.gd b/board/chess.gd
index e895a3f..21fc37f 100644
--- a/board/chess.gd
+++ b/board/chess.gd
@@ -1061,7 +1061,7 @@ func pgn() -> String:
return moves.join(" ")
-func load_pgn(pgn, options := {}) -> int: # FIXME: mildly broken. move generator for a8 cannot get a4, for some reason.
+func load_pgn(pgn: String, options := {}) -> int:
# allow the user to specify the sloppy move parser to work around over
# disambiguation bugs in Fritz and Chessbase
var sloppy: bool = options.sloppy if "sloppy" in options else false