From a4a691f8208a6af79c0fc263146332133fb71b9a Mon Sep 17 00:00:00 2001 From: Stachelbeere1248 Date: Wed, 21 May 2025 16:12:22 +0200 Subject: [PATCH] avoid discord notif bug send notification for pings in interaction replies --- src/commands/lfg.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/lfg.rs b/src/commands/lfg.rs index 386c171..22e6f11 100644 --- a/src/commands/lfg.rs +++ b/src/commands/lfg.rs @@ -123,6 +123,7 @@ pub(crate) async fn lfg( .allowed_mentions(CreateAllowedMentions::new().roles(vec![ping])); ctx.channel_id().send_message(ctx, reply).await?; + ctx.send(CreateReply::default()).await?; Ok(()) }