From 39db016f477121f73964b405f7d7f30524c6a167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Mon, 17 Sep 2018 14:54:05 +0200 Subject: [PATCH] Removed "Thing" commands categorie and moved to utility --- commands/{thing => utility}/invite.js | 0 commands/{thing => utility}/updoot.js | 0 index.js | 5 ++--- 3 files changed, 2 insertions(+), 3 deletions(-) rename commands/{thing => utility}/invite.js (100%) rename commands/{thing => utility}/updoot.js (100%) diff --git a/commands/thing/invite.js b/commands/utility/invite.js similarity index 100% rename from commands/thing/invite.js rename to commands/utility/invite.js diff --git a/commands/thing/updoot.js b/commands/utility/updoot.js similarity index 100% rename from commands/thing/updoot.js rename to commands/utility/updoot.js diff --git a/index.js b/index.js index b4a58bac..91cba2ad 100644 --- a/index.js +++ b/index.js @@ -15,11 +15,10 @@ const client = new CommandoClient({ client.registry .registerDefaultTypes() .registerGroups([ - ['thing', 'Some things i guess? i dont know how to name it'], - ['admin', 'Commands to make admin life easier'], - ['owner', 'Commands the owner can use to manage the bot'], ['fun', 'Fun commands'], ['utility', 'Some usefull commands'], + ['admin', 'Commands to make admin life easier'], + ['owner', 'Commands the owner can use to manage the bot'], ]) .registerDefaultGroups() .registerDefaultCommands()