diff --git a/src/utils/DiscordInteraction.ts b/src/utils/DiscordInteraction.ts index 92eeb24..8052ccd 100644 --- a/src/utils/DiscordInteraction.ts +++ b/src/utils/DiscordInteraction.ts @@ -40,6 +40,19 @@ GUILD_COMMANDS.push(new SlashCommandBuilder() .setDescription('[Developer Only] Reload interaction for global and all guilds') ) ); +GUILD_COMMANDS.push(new SlashCommandBuilder() + .setName('settings') + .setDescription('Change settings') + .addSubcommand(info => info + .setName('setprefix') + .setDescription('Change what prefix to use on this guild') + .addStringOption(prefix => prefix + .setName('prefix') + .setDescription('New prefix to use') + .setRequired(true) + ) + ) +); GUILD_COMMANDS.push(new SlashCommandBuilder() .setName('membershipscreening') .setDescription('Membership screening')