fixing cli build
All checks were successful
test and deploy / Build Native (push) Successful in 9m36s
test and deploy / Build WASM (push) Successful in 10m18s
test and deploy / Package Container (push) Successful in 2m12s

This commit is contained in:
Andy Pack 2024-07-19 23:32:22 +01:00
parent 1df1472e20
commit b15d7b5c38
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -39,7 +39,7 @@ fn main() {
info!(" draught"); info!(" draught");
info!("======================"); info!("======================");
let mut game = Game::new(args.width, args.height, args.piece_rows, Team::White, args.search); let game = Game::new(args.width, args.height, args.piece_rows, Team::White, args.search);
println!("{}", game.current_board()) println!("{}", game.current_board())
} }