diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-01 20:37:34 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-01 20:37:34 -0400 |
commit | 2b06a59c57fdf7aad217d63db875cdb3d8868036 (patch) | |
tree | 76fc9ff0f4217c5c4c3a37291dbb8e589da25bcc /src/commands/moderation | |
parent | ad26ae36bc57ad4fb77c6c3c3e86eb3303f09110 (diff) | |
download | tanzanite-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/moderation')
-rw-r--r-- | src/commands/moderation/ban.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/kick.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/modlog.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/mute.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/role.ts | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/commands/moderation/ban.ts b/src/commands/moderation/ban.ts index 9df1c2a..29dc8a6 100644 --- a/src/commands/moderation/ban.ts +++ b/src/commands/moderation/ban.ts @@ -14,7 +14,7 @@ import { Ban, Guild, ModLog, ModLogType } from '../../lib/models'; const durationRegex = /(?:(\d+)(d(?:ays?)?|h(?:ours?|rs?)?|m(?:inutes?|ins?)?|mo(?:nths?)?|w(?:eeks?|ks?)?)(?: |$))/g; */ export default class BanCommand extends BushCommand { - constructor() { + public constructor() { super('ban', { aliases: ['ban'], category: 'moderation', diff --git a/src/commands/moderation/kick.ts b/src/commands/moderation/kick.ts index a666c8e..09d6abf 100644 --- a/src/commands/moderation/kick.ts +++ b/src/commands/moderation/kick.ts @@ -4,7 +4,7 @@ import { BushSlashMessage } from '../../lib/extensions/discord-akairo/BushSlashM import { Guild, ModLog, ModLogType } from '../../lib/models'; export default class KickCommand extends BushCommand { - constructor() { + public constructor() { super('kick', { aliases: ['kick'], category: 'moderation', diff --git a/src/commands/moderation/modlog.ts b/src/commands/moderation/modlog.ts index 27018f1..d094885 100644 --- a/src/commands/moderation/modlog.ts +++ b/src/commands/moderation/modlog.ts @@ -6,7 +6,7 @@ import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; import { ModLog } from '../../lib/models'; export default class ModlogCommand extends BushCommand { - constructor() { + public constructor() { super('modlog', { aliases: ['modlog', 'modlogs'], category: 'moderation', diff --git a/src/commands/moderation/mute.ts b/src/commands/moderation/mute.ts index 88fcc69..3496489 100644 --- a/src/commands/moderation/mute.ts +++ b/src/commands/moderation/mute.ts @@ -5,7 +5,7 @@ import { BushCommand } from '../../lib/extensions/discord-akairo/BushCommand'; import { Guild, ModLog, ModLogType, Mute } from '../../lib/models'; export default class MuteCommand extends BushCommand { - constructor() { + public constructor() { super('mute', { aliases: ['mute'], category: 'moderation', diff --git a/src/commands/moderation/role.ts b/src/commands/moderation/role.ts index d1f8e00..71bb88e 100644 --- a/src/commands/moderation/role.ts +++ b/src/commands/moderation/role.ts @@ -24,7 +24,7 @@ export default class RoleCommand extends BushCommand { 'Giveaway (5m)': ['*', 'Admin Perms', 'Sr. Moderator', 'Moderator'], 'Giveaway (1m)': ['*', 'Admin Perms', 'Sr. Moderator', 'Moderator'] }; - constructor() { + public constructor() { super('role', { aliases: ['role', 'addrole', 'removerole'], category: 'moderation', |