We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83ab43 commit 83c9036Copy full SHA for 83c9036
backend/src/game.rs
@@ -71,7 +71,9 @@ fn default_board() -> Board {
71
fill_row(&mut board, 0, Player::Black);
72
fill_row(&mut board, 1, Player::Black);
73
fill_row(&mut board, 2, Player::Black);
74
+ fill_row(&mut board, 3, Player::Black);
75
76
+ fill_row(&mut board, BOARD_SIZE - 4, Player::White);
77
fill_row(&mut board, BOARD_SIZE - 3, Player::White);
78
fill_row(&mut board, BOARD_SIZE - 2, Player::White);
79
fill_row(&mut board, BOARD_SIZE - 1, Player::White);
0 commit comments