From dd1fbb77c699275ea34b65075c5cf7f10ea4bdcd Mon Sep 17 00:00:00 2001 From: Neshura Date: Fri, 1 Sep 2023 00:11:02 +0200 Subject: [PATCH] Screen Clear Bugfix --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ee5a745..56c1d50 100644 --- a/src/main.rs +++ b/src/main.rs @@ -328,7 +328,7 @@ async fn print_info(shutdown: Arc, bot: Arc>) { let bot: tokio::sync::MutexGuard<'_, Bot> = bot.lock().await; thread::sleep(Duration::from_millis(500)); - //print!("\x1B[2J\x1B[1;1H"); + print!("\x1B[2J\x1B[1;1H"); println!( "##[Ascendance of a Bookworm Bot]## | Time: {}", Utc::now().naive_local().format("%H:%M:%S")