diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-05-26 22:01:05 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-05-26 22:01:05 -0400 |
commit | 358113f823936a8b5613535067941a17169d942f (patch) | |
tree | 88a42dc0caffe0521cb8a50589d0103f2dfdee81 /src | |
parent | 5d6d86ab6090578dc475bf4afb1341141420e269 (diff) | |
download | tanzanite-358113f823936a8b5613535067941a17169d942f.tar.gz tanzanite-358113f823936a8b5613535067941a17169d942f.tar.bz2 tanzanite-358113f823936a8b5613535067941a17169d942f.zip |
add info category to commands
Diffstat (limited to 'src')
-rw-r--r-- | src/commands/info/botInfoCommand.ts | 1 | ||||
-rw-r--r-- | src/commands/info/helpCommand.ts | 1 | ||||
-rw-r--r-- | src/commands/info/pingCommand.ts | 1 | ||||
-rw-r--r-- | src/commands/info/pronounsCommand.ts | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/info/botInfoCommand.ts b/src/commands/info/botInfoCommand.ts index e6a4fbb..779b318 100644 --- a/src/commands/info/botInfoCommand.ts +++ b/src/commands/info/botInfoCommand.ts @@ -6,6 +6,7 @@ export default class BotInfoCommand extends BushCommand { constructor() { super('botinfo', { aliases: ['botinfo'], + category: 'info', description: { content: 'Shows information about the bot', usage: 'botinfo', diff --git a/src/commands/info/helpCommand.ts b/src/commands/info/helpCommand.ts index 30c2a21..3b5e538 100644 --- a/src/commands/info/helpCommand.ts +++ b/src/commands/info/helpCommand.ts @@ -9,6 +9,7 @@ export default class HelpCommand extends BushCommand { constructor() { super('help', { aliases: ['help'], + category: 'info', description: { content: 'Shows the commands of the bot', usage: 'help', diff --git a/src/commands/info/pingCommand.ts b/src/commands/info/pingCommand.ts index 62b8e60..e0bbfc7 100644 --- a/src/commands/info/pingCommand.ts +++ b/src/commands/info/pingCommand.ts @@ -7,6 +7,7 @@ export default class PingCommand extends BushCommand { constructor() { super('ping', { aliases: ['ping'], + category: 'info', description: { content: 'Gets the latency of the bot', usage: 'ping', diff --git a/src/commands/info/pronounsCommand.ts b/src/commands/info/pronounsCommand.ts index f30a981..2c1d5f2 100644 --- a/src/commands/info/pronounsCommand.ts +++ b/src/commands/info/pronounsCommand.ts @@ -34,7 +34,7 @@ export default class PronounsCommand extends BushCommand { constructor() { super('pronouns', { aliases: ['pronouns', 'pronoun'], - category: 'utilities', + category: 'info', description: { usage: 'pronouns <user>', examples: ['pronouns IRONM00N'], |