Skip to content

Commit

Permalink
Add check-buddy to cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
van-sprundel committed Sep 5, 2023
1 parent 76685dc commit 27d1fd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["check-buddy-*"]
default-members = ["check-buddy-*"]
members = ["check-buddy", "check-buddy-*"]
default-members = ["check-buddy","check-buddy-*"]
exclude = ["assets/", ".github/", "check-buddy/tests/datasets/"]
resolver = "2"
2 changes: 1 addition & 1 deletion check-buddy/src/board.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ impl BoardMap {

if should_enable_en_passant && self.get_piece(to).0 < 32 {
self.get_piece_mut(to).0 += 32;
}
// }
}

fn get_piece_positions_by_type(&self, piece_type: PieceType) -> Vec<Position> {
Expand Down

0 comments on commit 27d1fd7

Please sign in to comment.