diff options
Diffstat (limited to 'src/commands/info')
-rw-r--r-- | src/commands/info/botInfo.ts | 2 | ||||
-rw-r--r-- | src/commands/info/help.ts | 2 | ||||
-rw-r--r-- | src/commands/info/ping.ts | 2 | ||||
-rw-r--r-- | src/commands/info/pronouns.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index b77a271..6cdae17 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -3,7 +3,7 @@ import { duration } from 'moment'; import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; export default class BotInfoCommand extends BushCommand { - constructor() { + public constructor() { super('botinfo', { aliases: ['botinfo'], category: 'info', diff --git a/src/commands/info/help.ts b/src/commands/info/help.ts index 6e14d96..598f01a 100644 --- a/src/commands/info/help.ts +++ b/src/commands/info/help.ts @@ -4,7 +4,7 @@ import { BushSlashMessage } from '../../lib/extensions/discord-akairo/BushSlashM import { BushMessage } from '../../lib/extensions/discord.js/BushMessage'; export default class HelpCommand extends BushCommand { - constructor() { + public constructor() { super('help', { aliases: ['help'], category: 'info', diff --git a/src/commands/info/ping.ts b/src/commands/info/ping.ts index 45cfd22..75f4700 100644 --- a/src/commands/info/ping.ts +++ b/src/commands/info/ping.ts @@ -3,7 +3,7 @@ import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; import { BushSlashMessage } from '../../lib/extensions/discord-akairo/BushSlashMessage'; export default class PingCommand extends BushCommand { - constructor() { + public constructor() { super('ping', { aliases: ['ping'], category: 'info', diff --git a/src/commands/info/pronouns.ts b/src/commands/info/pronouns.ts index 538ec64..1f7ac15 100644 --- a/src/commands/info/pronouns.ts +++ b/src/commands/info/pronouns.ts @@ -29,7 +29,7 @@ export const pronounMapping = { export type pronounsType = keyof typeof pronounMapping; export default class PronounsCommand extends BushCommand { - constructor() { + public constructor() { super('pronouns', { aliases: ['pronouns', 'pronoun'], category: 'info', |