From f89226c23bd8d4b1579171ff5da4220abf997af2 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Wed, 22 Sep 2021 19:12:38 -0400 Subject: [PATCH] Fix erroneous error --- slash-commands/lenny.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slash-commands/lenny.js b/slash-commands/lenny.js index 942e920..58bb358 100644 --- a/slash-commands/lenny.js +++ b/slash-commands/lenny.js @@ -6,6 +6,6 @@ module.exports = { .setName('lenny') .setDescription('( ͡° ͜ʖ ͡°)'), async execute(interaction) { - await interaction.channel.send('( ͡° ͜ʖ ͡°)'); + interaction.reply('( ͡° ͜ʖ ͡°)'); }, }; \ No newline at end of file