diff --git a/.gitignore b/.gitignore index d76d4bb..8f4b486 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.vscode/ node_modules/* .env dist/ \ No newline at end of file diff --git a/src/events/buttons/guildapplicationaccept.ts b/src/events/buttons/guildapplicationaccept.ts index 608efe9..3ffbb84 100644 --- a/src/events/buttons/guildapplicationaccept.ts +++ b/src/events/buttons/guildapplicationaccept.ts @@ -53,7 +53,8 @@ export = { embeds: [ { description: - "Your application for the Illegitimate guild has been accepted.", + "Your application for the Illegitimate guild has been accepted.\n\n" + + "Make sure to leave your current guild so that we can invite you.", color: embedColor, }, ], diff --git a/src/interfaces/Command.ts b/src/interfaces/Command.ts index 4057322..e0757c4 100644 --- a/src/interfaces/Command.ts +++ b/src/interfaces/Command.ts @@ -8,10 +8,7 @@ export default interface Command { type: "slash" dev?: boolean public: boolean - data: Omit< - SlashCommandBuilder, - "addSubcommand" | "addSubcommandGroup" | "addIntegerOption" - > + data: SlashCommandBuilder subcommands?: boolean execute: ( interaction: ChatInputCommandInteraction,