Holana/events/interactionCreate.js
2023-11-26 22:26:08 +13:00

13 lines
No EOL
348 B
JavaScript

module.exports = (client, interaction) => {
if (!interaction.isChatInputCommand()) return;
const command = client.commands.get(interaction.commandName);
if (!command)
return void interaction.reply({
content: `Command \`${interaction.commandName}\` not found.`,
ephemeral: true,
});
command.run(client, interaction);
}