Fix erroneous error

This commit is contained in:
Skylar Grant 2021-09-22 19:12:38 -04:00
parent 8ccf736aa2
commit f89226c23b
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ module.exports = {
.setName('lenny') .setName('lenny')
.setDescription('( ͡° ͜ʖ ͡°)'), .setDescription('( ͡° ͜ʖ ͡°)'),
async execute(interaction) { async execute(interaction) {
await interaction.channel.send('( ͡° ͜ʖ ͡°)'); interaction.reply('( ͡° ͜ʖ ͡°)');
}, },
}; };