diff --git a/src/commands.rs b/src/commands.rs index 5a33de6..eff1ff2 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -44,6 +44,7 @@ async fn say(ctx: &Context, msg: &Message, args: Args) -> CommandResult { }; let content = content_safe(&ctx.cache, &args.rest(), &settings).await; + msg.delete(&ctx.http).await?; msg.channel_id.say(&ctx.http, &content).await?; Ok(()) }