From e9cc9773e7f3881941b1181aef1523d74f919716 Mon Sep 17 00:00:00 2001 From: MeexReay Date: Mon, 5 May 2025 04:44:21 +0300 Subject: [PATCH] remove println logging --- src/server/protocol/play.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/server/protocol/play.rs b/src/server/protocol/play.rs index 140537f..ba59269 100644 --- a/src/server/protocol/play.rs +++ b/src/server/protocol/play.rs @@ -316,7 +316,6 @@ pub fn handle_play_state( let mut ticks_alive = 0u64; while client.is_alive() { - println!("{ticks_alive}"); if ticks_alive % 200 == 0 { // 10 secs timer send_keep_alive(client.clone())?; @@ -342,7 +341,6 @@ pub fn handle_play_state( thread::sleep(Duration::from_millis(50)); // 1 tick ticks_alive += 1; } - println!("Client die"); Ok(()) }