diff --git a/commands/search/docs.js b/commands/code/docs.js similarity index 97% rename from commands/search/docs.js rename to commands/code/docs.js index cdae98d1..dd782660 100644 --- a/commands/search/docs.js +++ b/commands/code/docs.js @@ -6,7 +6,7 @@ module.exports = class DocstCommand extends Command { super(client, { name: 'docs', aliases: ['discord-js-docs', 'discord-js', 'djs', 'djs-docs'], - group: 'search', + group: 'code', memberName: 'docs', description: 'Searches the discord.js docs for your query.', clientPermissions: ['EMBED_LINKS'], diff --git a/commands/search/github.js b/commands/code/github.js similarity index 99% rename from commands/search/github.js rename to commands/code/github.js index be2231ed..6815cc8d 100644 --- a/commands/search/github.js +++ b/commands/code/github.js @@ -10,7 +10,7 @@ module.exports = class GithubCommand extends Command { super(client, { name: 'github', aliases: ['repo', 'gh', 'github-repo', 'gh-repo'], - group: 'search', + group: 'code', memberName: 'github', description: 'Responds with information on a GitHub repository.', clientPermissions: ['EMBED_LINKS'], diff --git a/commands/search/mdn.js b/commands/code/mdn.js similarity index 98% rename from commands/search/mdn.js rename to commands/code/mdn.js index 3cdeb59c..c6657b6d 100644 --- a/commands/search/mdn.js +++ b/commands/code/mdn.js @@ -6,7 +6,7 @@ module.exports = class MDNCommand extends Command { constructor(client) { super(client, { name: 'mdn', - group: 'search', + group: 'code', memberName: 'mdn', description: 'Searches MDN for your query.', clientPermissions: ['EMBED_LINKS'], diff --git a/commands/search/npm.js b/commands/code/npm.js similarity index 99% rename from commands/search/npm.js rename to commands/code/npm.js index 1b04f4c0..555ced36 100644 --- a/commands/search/npm.js +++ b/commands/code/npm.js @@ -8,7 +8,7 @@ module.exports = class NPMCommand extends Command { constructor(client) { super(client, { name: 'npm', - group: 'search', + group: 'code', memberName: 'npm', description: 'Responds with information on an NPM package.', clientPermissions: ['EMBED_LINKS'], diff --git a/commands/search/stack-overflow.js b/commands/code/stack-overflow.js similarity index 99% rename from commands/search/stack-overflow.js rename to commands/code/stack-overflow.js index 292edbad..d1fc9ff3 100644 --- a/commands/search/stack-overflow.js +++ b/commands/code/stack-overflow.js @@ -10,7 +10,7 @@ module.exports = class StackOverflowCommand extends Command { constructor(client) { super(client, { name: 'stack-overflow', - group: 'search', + group: 'code', memberName: 'stack-overflow', description: 'Searches Stack Overflow for your query.', clientPermissions: ['EMBED_LINKS'], diff --git a/package.json b/package.json index 1cd0bd32..7bddb748 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "136.4.0", + "version": "136.4.1", "description": "Your personal server companion.", "main": "Xiao.js", "private": true,