online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/board/Board.gd')
| -rw-r--r-- | ui/board/Board.gd | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/board/Board.gd b/ui/board/Board.gd index 3659c0f..4a7495a 100644 --- a/ui/board/Board.gd +++ b/ui/board/Board.gd @@ -187,7 +187,6 @@ func square_clicked(clicked_square: String) -> void: func move(san: String, is_recieved_move := true) -> void: var sound_handled = false var move_0x88 = chess.__move_from_san(san, true) - Log.info(chess.moves({square = chess.algebraic(move_0x88.from), stripped = true})) if ( chess.moves({square = chess.algebraic(move_0x88.from), stripped = true}).find(chess.stripped_san(san)) == -1 |