diff options
author | IgrisBRC <[email protected]> | 2024-07-15 17:26:12 +0530 |
---|---|---|
committer | IgrisBRC <[email protected]> | 2024-07-15 17:26:12 +0530 |
commit | 2a7a6d8b1c25a3935a3477d7f4285521c37a76a9 (patch) | |
tree | a34c0dd48575629f82a2ba1f436ef85b090b4d0d /public | |
parent | 6a44c47fcef5f645879780b0b5f287cfb60be088 (diff) |
removed unnecessary logs
Diffstat (limited to 'public')
-rw-r--r-- | public/move.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/public/move.js b/public/move.js index 89bd3de..ec4b70e 100644 --- a/public/move.js +++ b/public/move.js @@ -211,7 +211,6 @@ function rook_move(board, y, x) { for (let i = x + 1; i < board[1].length; i++) { if (board[y][i] != 0) { if (color ^ board[y][i] > 0) { - console.log(color ^ board[y][i]) moves.push([y, i]) break } @@ -339,7 +338,6 @@ function amelia_move(board, y, x) { for (let i = x + 1; i < board[1].length; i++) { if (board[y][i] != 0) { if (color ^ board[y][i] > 0) { - console.log(color ^ board[y][i]) moves.push([y, i]) break } |