blob: b1e7593c92471a33bd2283c7a8805776c85c4b7a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Events, MessageFlags } from "discord.js";
export default {
name: Events.InteractionCreate,
async execute(interaction, client) {
if (!interaction.isChatInputCommand()) return;
const command = interaction.client.commands.get(interaction.commandName);
if (!command) return;
try {
await command.execute(interaction, client);
} catch (e) {
console.error(e);
await interaction.reply({ content: 'Something went wrong.', flags: MessageFlags.Ephemeral });
}
}
}
|