From 6304e99fc264793f1b28c7e36e9ac60cb9ed9c2a Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Sun, 18 Jan 2026 09:18:33 -0500 Subject: [PATCH] pin start of round messages --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6ccf11e..4f90239 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -657,8 +657,8 @@ async fn go_to_next_round_core_discord( msg += format!("\nThere are an odd number, so {} will advance with no poll.", names[names.len() - 1]).as_str(); } - channel.say(&dc.client.http, msg).await?; - Ok(()) + let sent = channel.say(&dc.client.http, msg).await?; + sent.pin(&dc.client.http).await }