summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/move.js2
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
}