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 }