From 14867491af56a4fadc968b3534de0e1129bb5fde Mon Sep 17 00:00:00 2001 From: cirroskais Date: Thu, 18 Apr 2024 15:06:50 -0400 Subject: [PATCH] wrong repsonse type --- src/interactions/default.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interactions/default.ts b/src/interactions/default.ts index 2c2b04c..32f8862 100644 --- a/src/interactions/default.ts +++ b/src/interactions/default.ts @@ -21,7 +21,7 @@ export default class extends SlashCommand implements Command { async run(interaction: Interaction) { return { - type: InteractionResponseTypes.UpdateMessage, + type: InteractionResponseTypes.ChannelMessageWithSource, data: { content: "my name is terry and im going to destroy thgis world" }, }; }