pin start of round messages

This commit is contained in:
Benji Dial 2026-01-18 09:18:33 -05:00
parent f57ffaf076
commit 6304e99fc2

View file

@ -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
}