From 2840c382eec6d0f1df5fefed8928c64d7f06a769 Mon Sep 17 00:00:00 2001 From: Jacob Babich Date: Sun, 21 Jan 2024 00:48:18 -0500 Subject: [PATCH] chore: remove soft saving announcement to reduce mm-chat clutter --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index b388652..9d54b1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -62,11 +62,11 @@ where } async fn do_soft_save_with_announcement() { - run_rcon_command([ - "say", - "Soft saving now. No need to interrupt what you're doing.", - ]) - .await; + // run_rcon_command([ + // "say", + // "Soft saving now. No need to interrupt what you're doing.", + // ]) + // .await; run_rcon_command(["save-all"]).await; }