From 3b4d65313242168de23a78de3418919fe1ed2f10 Mon Sep 17 00:00:00 2001 From: JandereDev Date: Tue, 25 Jan 2022 19:44:53 +0100 Subject: [PATCH] fixed command category --- bot/src/bot/commands/botadm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/src/bot/commands/botadm.ts b/bot/src/bot/commands/botadm.ts index 8fa1ac0..1ec1031 100644 --- a/bot/src/bot/commands/botadm.ts +++ b/bot/src/bot/commands/botadm.ts @@ -37,7 +37,7 @@ export default { description: 'Bot administration', removeEmptyArgs: true, restrict: 'BOTOWNER', - category: 'moderation', + category: 'owner', run: async (message: MessageCommandContext, args: string[]) => { if (!args.length) return message.reply('No subcommand specified. Available subcommands: ' + SUBCOMMANDS.join(', '));