diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-01 17:03:48 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-01 17:03:48 -0500 |
commit | 342b01c7f51dbe8beef1d3deb37822080ed6097f (patch) | |
tree | 499b1f0ef1a8870e7abe61beba5fc1be9469e363 /src/commands/moderation | |
parent | c24dfae07747c71e1c1806b12bf0f0bcd3dd60dd (diff) | |
download | tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.tar.gz tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.tar.bz2 tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.zip |
a few things
Diffstat (limited to 'src/commands/moderation')
-rw-r--r-- | src/commands/moderation/_activePunishments.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/hideCase.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/slowmode.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/timeout.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/unlockdown.ts | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/commands/moderation/_activePunishments.ts b/src/commands/moderation/_activePunishments.ts index d40f2ba..98c4912 100644 --- a/src/commands/moderation/_activePunishments.ts +++ b/src/commands/moderation/_activePunishments.ts @@ -5,7 +5,7 @@ // export default class ActivePunishmentsCommand extends BushCommand { // public constructor() { -// super('active-punishments', { +// super('activePunishments', { // aliases: ['active-punishments', 'ap'], // category: 'moderation', // description: 'Gets a list of all the active punishment in the server.', diff --git a/src/commands/moderation/hideCase.ts b/src/commands/moderation/hideCase.ts index de7b310..04160fd 100644 --- a/src/commands/moderation/hideCase.ts +++ b/src/commands/moderation/hideCase.ts @@ -3,7 +3,7 @@ import { BushCommand, ModLog, type BushMessage, type BushSlashMessage } from '#l export default class HideCaseCommand extends BushCommand { public constructor() { super('hideCase', { - aliases: ['hide-case', 'hide_case', 'showcase', 'show_case', 'cover-up-mod-abuse', 'cover_up_mod_abuse'], + aliases: ['hide-case', 'hide_case', 'show-case', 'show_case', 'cover-up-mod-abuse', 'cover_up_mod_abuse'], category: 'moderation', description: 'Hide a particular modlog case from the modlog command unless the `--hidden` flag is specified', usage: ['hide-case <case_id>'], diff --git a/src/commands/moderation/slowmode.ts b/src/commands/moderation/slowmode.ts index 3d53edc..bfa6462 100644 --- a/src/commands/moderation/slowmode.ts +++ b/src/commands/moderation/slowmode.ts @@ -2,7 +2,7 @@ import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } fr import { Argument } from 'discord-akairo'; import { type TextChannel, type ThreadChannel } from 'discord.js'; -export default class SlowModeCommand extends BushCommand { +export default class SlowmodeCommand extends BushCommand { public constructor() { super('slowmode', { aliases: ['slowmode', 'slow'], diff --git a/src/commands/moderation/timeout.ts b/src/commands/moderation/timeout.ts index f187a58..3968bde 100644 --- a/src/commands/moderation/timeout.ts +++ b/src/commands/moderation/timeout.ts @@ -4,7 +4,7 @@ import assert from 'assert'; export default class TimeoutCommand extends BushCommand { public constructor() { super('timeout', { - aliases: ['timeout'], + aliases: ['timeout', 'to'], category: 'moderation', description: 'Timeout a user.', usage: ['timeout <user> <reasonAndDuration>'], diff --git a/src/commands/moderation/unlockdown.ts b/src/commands/moderation/unlockdown.ts index 5bcea32..3d363ac 100644 --- a/src/commands/moderation/unlockdown.ts +++ b/src/commands/moderation/unlockdown.ts @@ -1,10 +1,10 @@ +import { LockdownCommand } from '#commands'; import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage, type OptionalArgType } from '#lib'; -import LockdownCommand from './lockdown.js'; export default class UnlockdownCommand extends BushCommand { public constructor() { super('unlockdown', { - aliases: ['unlockdown', 'unlock'], + aliases: ['unlockdown', 'unlock', 'lockup'], category: 'moderation', description: 'Allows you to unlockdown a channel or all configured channels.', usage: ['unlockdown [channel] [reason] [--all]'], |