From f6646aea636f7c8993e6b0013c36f59a6d6d97d3 Mon Sep 17 00:00:00 2001 From: notohh Date: Mon, 12 Aug 2024 04:25:05 -0400 Subject: [PATCH] ping: remove seconds --- src/commands/ping.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/ping.rs b/src/commands/ping.rs index 9b3c789..4746136 100644 --- a/src/commands/ping.rs +++ b/src/commands/ping.rs @@ -30,8 +30,8 @@ pub async fn ping_command(m: &PrivmsgMessage, c: &TwitchClient) -> Result<(), Bo let host = System::name().unwrap(); let s = format!( - "🚀Pong! | ↑: {}d {}h {}m {}s | Host: {} | Mem: {:.2} MB", - uptime_days, remaining_hours, remaining_minutes, remaining_seconds, host, mem + "🚀Pong! | ↑: {}d {}h {}m | Host: {} | Mem: {:.2} MB", + uptime_days, remaining_hours, remaining_minutes, host, mem ); c.twitch_client.say(channel, s).await?;