From 358113f823936a8b5613535067941a17169d942f Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 26 May 2021 22:01:05 -0400 Subject: add info category to commands --- src/commands/info/botInfoCommand.ts | 1 + src/commands/info/helpCommand.ts | 1 + src/commands/info/pingCommand.ts | 1 + src/commands/info/pronounsCommand.ts | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src') 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 ', examples: ['pronouns IRONM00N'], -- cgit