23 lines
No EOL
665 B
TypeScript
23 lines
No EOL
665 B
TypeScript
import { ButtonInteraction } from "discord.js";
|
|
import { CoreClient } from "../client";
|
|
|
|
export default class Button {
|
|
public static async onButtonClicked(interaction: ButtonInteraction) {
|
|
if (!interaction.isButton) return;
|
|
|
|
const item = CoreClient.buttonEvents.find(x => x.ButtonId == interaction.customId.split(" ")[0]);
|
|
|
|
if (!item) {
|
|
await interaction.reply("Event not found");
|
|
return;
|
|
}
|
|
|
|
try {
|
|
item.Event.execute(interaction);
|
|
} catch (e) {
|
|
console.error(e);
|
|
|
|
await interaction.reply("An error occurred while executing the event");
|
|
}
|
|
}
|
|
} |