🐛 shop roles cancel instead of shop cancel

This commit is contained in:
Axel Olausson Holtenäs 2022-04-11 22:52:54 +02:00
parent 245b8e22b2
commit f66110b868
No known key found for this signature in database
GPG key ID: 9347A5E873995701

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.") )
) )
) )
), ),