summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgrisBRC <[email protected]>2024-07-13 10:58:42 +0530
committerIgrisBRC <[email protected]>2024-07-13 10:58:42 +0530
commit6ad604160fdde024151018195190db0248cce216 (patch)
tree7670295a537e5435e69911de3901ff135cc79bcf
parentf0f153cf95eb0b27e0bdd3dd0367ed7325a31d64 (diff)
removed extra pawn move
-rw-r--r--pawns_move.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/pawns_move.js b/pawns_move.js
deleted file mode 100644
index f304608..0000000
--- a/pawns_move.js
+++ /dev/null
@@ -1,7 +0,0 @@
-function pawn_move(board, y, x){
- let moves =[];
- // * if pawn at row 1 or at row 6 it has to choice
- if(x<board.length && x >-1 && y<board.length && y>-1){
- moves.push()
- }
-} \ No newline at end of file