Remove console prints.

This commit is contained in:
yukirij 2024-10-05 12:58:19 -07:00
parent b9ba0bbefa
commit f975e723a7

View File

@ -72,9 +72,6 @@ impl Game {
// - Determine game state (check, checkmate). // - Determine game state (check, checkmate).
// //
println!("PLAY: {}", play.source);
if valid { if valid {
// Move piece on board. // Move piece on board.
@ -148,7 +145,6 @@ impl Game {
// Player retired. // Player retired.
0xF => { 0xF => {
println!("RESIGN");
self.status = GameStatus::Resign; self.status = GameStatus::Resign;
true true
} }