feat: rory command!!!

This commit is contained in:
Chew 2022-12-22 22:53:12 -06:00
parent e1daf40512
commit a45a7e3580
No known key found for this signature in database
GPG key ID: 65ECD2BEA883F53E
3 changed files with 57 additions and 0 deletions

View file

@ -49,6 +49,9 @@ export const reuploadCommands = async () => {
.setDefaultMemberPermissions(PermissionFlagsBits.ModerateMembers)
.setDMPermission(false),
new SlashCommandBuilder().setName('joke').setDescription("it's a joke"),
new SlashCommandBuilder().setName('rory').setDescription("Gets a Rory photo!")
.addStringOption((option) =>
option.setName("id").setDescription("specify a Rory ID").setRequired(false)),
].map((command) => command.toJSON());
const rest = new REST({ version: '10' }).setToken(process.env.DISCORD_TOKEN!);