Merge pull request #212 from VermiumSifell/dev

✏️ shop cancel is now shop roles cancel
This commit is contained in:
Axel Olausson Holtenäs 2022-04-11 22:49:58 +02:00 committed by GitHub
commit 521fa19d80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,15 +47,15 @@ export default {
) )
) )
) )
) .addSubcommand((command) =>
.addSubcommand((command) => command
command .setName("cancel")
.setName("cancel") .setDescription("Cancel a custom role")
.setDescription("Cancel a custom role") .addRoleOption((option) =>
.addRoleOption((option) => option
option .setName("role")
.setName("role") .setDescription("Name of the role you wish to cancel.")
.setDescription("Name of the role you wish to cancel.") )
) )
), ),
async execute(interaction: CommandInteraction) { async execute(interaction: CommandInteraction) {