From 4e709abed8b725b5457a36119737b9c485dc563c Mon Sep 17 00:00:00 2001 From: TriForMine Date: Sat, 30 Oct 2021 15:32:59 +0200 Subject: [PATCH] Fix sendInteractionResponse again --- src/helpers/interactions/send_interaction_response.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/interactions/send_interaction_response.ts b/src/helpers/interactions/send_interaction_response.ts index 6568b4009..78b2d29be 100644 --- a/src/helpers/interactions/send_interaction_response.ts +++ b/src/helpers/interactions/send_interaction_response.ts @@ -32,7 +32,7 @@ export async function sendInteractionResponse( options.data = { ...options.data, allowedMentions: { parse: [] } }; } - const allowedMentions: AllowedMentions = options.data?.allowedMentions || { parse: [] }; + const allowedMentions: AllowedMentions = options.data?.allowedMentions; // If its already been executed, we need to send a followup response if (bot.cache.executedSlashCommands.has(token)) {