chore: prettier
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
1fd04bf5d5
commit
21390fed8a
3 changed files with 25 additions and 15 deletions
|
@ -49,9 +49,15 @@ 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!")
|
||||
new SlashCommandBuilder()
|
||||
.setName('rory')
|
||||
.setDescription('Gets a Rory photo!')
|
||||
.addStringOption((option) =>
|
||||
option.setName("id").setDescription("specify a Rory ID").setRequired(false)),
|
||||
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!);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue