this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(raffle): set allowed_mentions to none (#17)

+4 -2
+4 -2
src/commands/fun/chance.rs
··· 41 41 } 42 42 43 43 if Some(memeberid).is_some() && memeberid != UserId::new(1) { 44 - ctx.say(format!("<@{memeberid}> has won the raffle")) 45 - .await?; 44 + let builder = poise::CreateReply::default() 45 + .content(format!("<@{memeberid}> has won the raffle")) 46 + .allowed_mentions(poise::serenity_prelude::CreateAllowedMentions::new()); 47 + ctx.send(builder).await?; 46 48 } 47 49 48 50 Ok(())