You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/commands/Community/clashRoyale.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ module.exports = {
11
11
category: "Community",
12
12
data: newSlashCommandBuilder()
13
13
.setName('clash-royale')
14
-
.setDescription('Get information about Clash Royale players and clans')
14
+
.setDescription('Get information about Clash Royale players, cards and clans')
15
15
.addSubcommand(subcommand=>subcommand.setName('player').setDescription('Get information about a Clash Royale player').addStringOption(option=>option.setName('player-tag').setDescription('The player tag (e.g. #20022JR28)').setRequired(true)))
16
16
.addSubcommand(subcommand=>subcommand.setName('clan-info').setDescription('Get information about a Clash Royale clan').addStringOption(option=>option.setName('clan-tag').setDescription('The clan tag (e.g. #QPP0VPCR)').setRequired(true)))
17
17
.addSubcommand(subcommand=>subcommand.setName('card-info').setDescription('Get information about a specific Clash Royale card').addStringOption(option=>option.setName('card-name').setDescription('Name of the card you want to look up').setAutocomplete(true).setRequired(true)))
0 commit comments