diff options
-rw-r--r-- | src/commands/moderation/banCommand.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/kickCommand.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/modlogCommand.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/roleCommand.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/warnCommand.ts | 2 | ||||
-rw-r--r-- | src/commands/server-config/prefixCommand.ts | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/commands/moderation/banCommand.ts b/src/commands/moderation/banCommand.ts index 354fc0d..feb020b 100644 --- a/src/commands/moderation/banCommand.ts +++ b/src/commands/moderation/banCommand.ts @@ -22,7 +22,7 @@ export default class BanCommand extends BushCommand { constructor() { super('ban', { aliases: ['ban'], - category: "moderation", + category: 'moderation', args: [ { id: 'user', diff --git a/src/commands/moderation/kickCommand.ts b/src/commands/moderation/kickCommand.ts index 132ca31..58cf52e 100644 --- a/src/commands/moderation/kickCommand.ts +++ b/src/commands/moderation/kickCommand.ts @@ -8,7 +8,7 @@ export default class KickCommand extends BushCommand { constructor() { super('kick', { aliases: ['kick'], - category: "moderation", + category: 'moderation', args: [ { id: 'user', diff --git a/src/commands/moderation/modlogCommand.ts b/src/commands/moderation/modlogCommand.ts index 3e394ba..2df4745 100644 --- a/src/commands/moderation/modlogCommand.ts +++ b/src/commands/moderation/modlogCommand.ts @@ -10,7 +10,7 @@ export default class ModlogCommand extends BushCommand { constructor() { super('modlog', { aliases: ['modlog', 'modlogs'], - category: "moderation", + category: 'moderation', args: [ { id: 'search', diff --git a/src/commands/moderation/roleCommand.ts b/src/commands/moderation/roleCommand.ts index 04437ba..d5948c3 100644 --- a/src/commands/moderation/roleCommand.ts +++ b/src/commands/moderation/roleCommand.ts @@ -42,7 +42,7 @@ export default class RoleCommand extends BushCommand { constructor() { super('role', { aliases: ['role', 'addrole', 'removerole'], - category: "moderation", + category: 'moderation', description: { content: "Manages users' roles.", usage: 'role <add|remove> <user> <role>', diff --git a/src/commands/moderation/warnCommand.ts b/src/commands/moderation/warnCommand.ts index ea2d7ee..a61eef3 100644 --- a/src/commands/moderation/warnCommand.ts +++ b/src/commands/moderation/warnCommand.ts @@ -6,7 +6,7 @@ export default class WarnCommand extends BushCommand { public constructor() { super('warn', { aliases: ['warn'], - category: "moderation", + category: 'moderation', userPermissions: ['MANAGE_MESSAGES'], args: [ { diff --git a/src/commands/server-config/prefixCommand.ts b/src/commands/server-config/prefixCommand.ts index ac85922..cf70bd2 100644 --- a/src/commands/server-config/prefixCommand.ts +++ b/src/commands/server-config/prefixCommand.ts @@ -8,7 +8,7 @@ export default class PrefixCommand extends BushCommand { constructor() { super('prefix', { aliases: ['prefix'], - category: "server config", + category: 'server config', args: [ { id: 'prefix' |