diff options
| author | 8cy <[email protected]> | 2020-04-29 14:42:03 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-29 14:42:03 -0700 |
| commit | 9b2ab3b7a29983beba6908644a69925fd7adf253 (patch) | |
| tree | 2d62bbe56895bf1349b86f89d021d0ce67f6a608 /src/commands/moderation | |
| parent | formatting, blacklists, v9.0.1 (diff) | |
| download | dep-core-9b2ab3b7a29983beba6908644a69925fd7adf253.tar.xz dep-core-9b2ab3b7a29983beba6908644a69925fd7adf253.zip | |
add contact cmds, qol updates/ formatting, v9.1.0
Diffstat (limited to 'src/commands/moderation')
| -rw-r--r-- | src/commands/moderation/addrole.ts | 2 | ||||
| -rw-r--r-- | src/commands/moderation/clear.ts | 4 | ||||
| -rw-r--r-- | src/commands/moderation/removerole.ts | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/moderation/addrole.ts b/src/commands/moderation/addrole.ts index 65b8f8b..63f2f14 100644 --- a/src/commands/moderation/addrole.ts +++ b/src/commands/moderation/addrole.ts @@ -8,7 +8,7 @@ module.exports = class AddRoleModeration extends Command { aliases: ['roleadd'], group: 'moderation', memberName: 'addrole', - description: '[Disabled] Adds a role to a specific user.', + description: '**[Disabled]** Adds a role to a specific user.', // args: [ // { // key: 'userID', diff --git a/src/commands/moderation/clear.ts b/src/commands/moderation/clear.ts index c2f44ab..5175556 100644 --- a/src/commands/moderation/clear.ts +++ b/src/commands/moderation/clear.ts @@ -1,12 +1,12 @@ import { Command, CommandoMessage } from 'discord.js-commando'; import emoji from 'emoji-random'; -module.exports = class ClearBot extends Command { +module.exports = class ClearModeration extends Command { constructor(client) { super(client, { name: 'clear', aliases: ['delete', 'del', 'c'], - group: 'bot', + group: 'moderation', memberName: 'clear', description: 'Clears a specified amount of messages.', guildOnly: true, diff --git a/src/commands/moderation/removerole.ts b/src/commands/moderation/removerole.ts index 104606d..d86dbf2 100644 --- a/src/commands/moderation/removerole.ts +++ b/src/commands/moderation/removerole.ts @@ -7,7 +7,7 @@ module.exports = class RemoveRoleModeration extends Command { aliases: ['roleremove'], group: 'moderation', memberName: 'removerole', - description: '[Disabled] Removes a role to a specific user.', + description: '**[Disabled]** Removes a role from a specific user.', // args: [ // { // key: 'userID', |