Merge pull request #213 from VermiumSifell/dev

🐛 shop roles cancel instead of shop cancel
This commit is contained in:
Axel Olausson Holtenäs 2022-04-11 22:53:13 +02:00 committed by GitHub
commit c42c231de7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,15 +46,15 @@ export default {
"Color of the role you wish to purchase (For example RED or BLUE or GREEN)." "Color of the role you wish to purchase (For example RED or BLUE or GREEN)."
) )
) )
) .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.") )
) )
) )
), ),