diff options
Diffstat (limited to 'modules/registers.js')
-rwxr-xr-x | modules/registers.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/registers.js b/modules/registers.js index a8f2e7f..9ed0a74 100755 --- a/modules/registers.js +++ b/modules/registers.js @@ -59,6 +59,14 @@ module.exports = [ .setAutocomplete(true)
),
new SlashCommandBuilder()
+ .setName('color')
+ .setDescription("Searches for a pony from their coat, mane or eyes color(s)")
+ .addStringOption(option =>
+ option.setName("query")
+ .setDescription("The criteria. Run the command without a query to get help.")
+ .setRequired(false)
+ ),
+ new SlashCommandBuilder()
.setName('info')
.setDescription("Gets stats and info about the bot"),
new SlashCommandBuilder()
|