From f975e723a7befed5017a8bafe3a404d8af9ea3ed Mon Sep 17 00:00:00 2001 From: yukirij Date: Sat, 5 Oct 2024 12:58:19 -0700 Subject: [PATCH] Remove console prints. --- game/src/game/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/game/src/game/mod.rs b/game/src/game/mod.rs index d96b3c2..d357e6c 100644 --- a/game/src/game/mod.rs +++ b/game/src/game/mod.rs @@ -72,9 +72,6 @@ impl Game { // - Determine game state (check, checkmate). // - println!("PLAY: {}", play.source); - - if valid { // Move piece on board. @@ -148,7 +145,6 @@ impl Game { // Player retired. 0xF => { - println!("RESIGN"); self.status = GameStatus::Resign; true }