diff --git a/Xiao.js b/Xiao.js index 103589c3..ac9aea69 100644 --- a/Xiao.js +++ b/Xiao.js @@ -19,9 +19,9 @@ client.registry .registerDefaultTypes() .registerTypesIn(path.join(__dirname, 'types')) .registerGroups([ + ['util', 'Utility (Owner)'], ['util-public', 'Utility'], ['util-voice', 'Utility (Voice)'], - ['util', 'Utility (Owner)'], ['info', 'Discord Information'], ['random-res', 'Random Response'], ['random-img', 'Random Image'], @@ -32,6 +32,7 @@ client.registry ['search', 'Search'], ['pokedex', 'Pokédex'], ['analyze', 'Analyzers'], + ['code', 'Programming'], ['games-sp', 'Single-Player Games'], ['games-mp', 'Multi-Player Games'], ['edit-image', 'Image Manipulation'], @@ -44,10 +45,9 @@ client.registry ['voice', 'Play Audio'], ['remind', 'Reminders'], ['phone', 'Phone'], - ['code', 'Coding Tools'], ['cleverbot', 'Cleverbot'], - ['other', 'Other'], - ['roleplay', 'Roleplay'] + ['roleplay', 'Roleplay'], + ['other', 'Other'] ]) .registerDefaultCommands({ help: false, diff --git a/commands/other/screenshot.js b/commands/analyze/screenshot.js similarity index 98% rename from commands/other/screenshot.js rename to commands/analyze/screenshot.js index ef72d066..f17900db 100644 --- a/commands/other/screenshot.js +++ b/commands/analyze/screenshot.js @@ -7,7 +7,7 @@ module.exports = class ScreenshotCommand extends Command { super(client, { name: 'screenshot', aliases: ['capture', 'ss'], - group: 'other', + group: 'analyze', memberName: 'screenshot', description: 'Takes a screenshot of any webpage.', clientPermissions: ['ATTACH_FILES'],