aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-01 20:37:34 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-01 20:37:34 -0400
commit2b06a59c57fdf7aad217d63db875cdb3d8868036 (patch)
tree76fc9ff0f4217c5c4c3a37291dbb8e589da25bcc /src/commands/info
parentad26ae36bc57ad4fb77c6c3c3e86eb3303f09110 (diff)
downloadtanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.tar.gz
tanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.tar.bz2
tanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.zip
don't judge me part 2 & fix esbuild with eval command
Diffstat (limited to 'src/commands/info')
-rw-r--r--src/commands/info/botInfo.ts2
-rw-r--r--src/commands/info/help.ts2
-rw-r--r--src/commands/info/ping.ts2
-rw-r--r--src/commands/info/pronouns.ts2
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',