card-drop/src/client/interactionCreate/Button.ts
Ethan Lane 0517a48549
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
Add try/catch to command execution
2024-02-23 18:18:40 +00:00

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");
}
}
}