online multiplayer chess game (note server currently down)
Diffstat (limited to 'board/chess.gd')
| -rw-r--r-- | board/chess.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/chess.gd b/board/chess.gd index a7c741a..06f3822 100644 --- a/board/chess.gd +++ b/board/chess.gd @@ -1003,6 +1003,8 @@ func moves(options := {}): # SAN if "verbose" in options && options.verbose: moves.append(__make_pretty(ugly_move)) + elif "stripped" in options && options.stripped: + moves.append(stripped_san(__move_to_san(ugly_move, __generate_moves({legal = true}), false))) else: moves.append(__move_to_san(ugly_move, __generate_moves({legal = true}))) return moves |