diff options
author | IgrisBRC <[email protected]> | 2024-07-13 10:58:42 +0530 |
---|---|---|
committer | IgrisBRC <[email protected]> | 2024-07-13 10:58:42 +0530 |
commit | 6ad604160fdde024151018195190db0248cce216 (patch) | |
tree | 7670295a537e5435e69911de3901ff135cc79bcf | |
parent | f0f153cf95eb0b27e0bdd3dd0367ed7325a31d64 (diff) |
removed extra pawn move
-rw-r--r-- | pawns_move.js | 7 |
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 |