From 6e61b4d3d054ac0dd10da3332ae70d5b96e1535b Mon Sep 17 00:00:00 2001 From: 0880 <98263509+0880880@users.noreply.github.com> Date: Sat, 17 Jan 2026 15:28:31 +0330 Subject: [PATCH] Remove debug logs --- index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.html b/index.html index 072a906..aaa9b4f 100644 --- a/index.html +++ b/index.html @@ -158,9 +158,6 @@ i = mHouse[0]; j = mHouse[1]; if (ready && board) { - console.log(turn); - console.log(color); - console.log(selected); if (board[j][i] !== "E" && (board[j][i] === board[j][i].toUpperCase() ? 0 : 1) === color && turn == color) { selected = [i, j]; @@ -185,7 +182,6 @@ moves.forEach(move => { console.log(move); if (move[0] == i && move[1] == j) { - console.log("YAY"); fetch('{{ API_ROOT }}/move/' + ROOM_ID, { method: 'POST', headers: {