diff --git a/src/commands/ping/index.js b/src/commands/ping/index.js index 5d3f4d6..2b24af1 100644 --- a/src/commands/ping/index.js +++ b/src/commands/ping/index.js @@ -4,7 +4,7 @@ export default { data: new SlashCommandBuilder() .setName('ping') .setDescription('Replies with Pong!'), - async execute(interaction) { + async execute(interaction, api) { await interaction.reply('Pong!'); } };