diff --git a/Xiao.js b/Xiao.js index 12f6a000..36ff11eb 100644 --- a/Xiao.js +++ b/Xiao.js @@ -36,6 +36,7 @@ client.registry ['edit-image', 'Image Manipulation'], ['edit-image-text', 'Image Text Manipulation'], ['edit-avatar', 'Avatar Manipulation'], + ['edit-face', 'Face Manipulation'], ['edit-meme', 'Meme Generators'], ['edit-text', 'Text Manipulation'], ['edit-number', 'Number Manipulation'], diff --git a/commands/edit-image/anime-eyes.js b/commands/edit-face/anime-eyes.js similarity index 99% rename from commands/edit-image/anime-eyes.js rename to commands/edit-face/anime-eyes.js index 9018f148..85cf2633 100644 --- a/commands/edit-image/anime-eyes.js +++ b/commands/edit-face/anime-eyes.js @@ -10,7 +10,7 @@ module.exports = class AnimeEyesCommand extends Command { super(client, { name: 'anime-eyes', aliases: ['ani-eyes', 'manga-eyes'], - group: 'edit-image', + group: 'edit-face', memberName: 'anime-eyes', description: 'Draws anime eyes onto the faces in an image.', throttling: { diff --git a/commands/edit-image/danny-devito.js b/commands/edit-face/danny-devito.js similarity index 99% rename from commands/edit-image/danny-devito.js rename to commands/edit-face/danny-devito.js index 0ea18808..2bc8eed4 100644 --- a/commands/edit-image/danny-devito.js +++ b/commands/edit-face/danny-devito.js @@ -10,7 +10,7 @@ module.exports = class DannyDevitoCommand extends Command { super(client, { name: 'danny-devito', aliases: ['devito'], - group: 'edit-image', + group: 'edit-face', memberName: 'danny-devito', description: 'Draws Danny Devito\'s face onto the faces in an image.', throttling: { diff --git a/commands/edit-image/emoji-face.js b/commands/edit-face/emoji-face.js similarity index 99% rename from commands/edit-image/emoji-face.js rename to commands/edit-face/emoji-face.js index c86cb046..f98cc09d 100644 --- a/commands/edit-image/emoji-face.js +++ b/commands/edit-face/emoji-face.js @@ -11,7 +11,7 @@ module.exports = class EmojiFaceCommand extends Command { super(client, { name: 'emoji-face', aliases: ['emoji-f', 'e-face'], - group: 'edit-image', + group: 'edit-face', memberName: 'emoji-face', description: 'Draws an emoji onto the faces in an image.', throttling: { diff --git a/commands/edit-image/eyes.js b/commands/edit-face/eyes.js similarity index 99% rename from commands/edit-image/eyes.js rename to commands/edit-face/eyes.js index c720b2f3..ec8dcfc0 100644 --- a/commands/edit-image/eyes.js +++ b/commands/edit-face/eyes.js @@ -9,7 +9,7 @@ module.exports = class EyesCommand extends Command { constructor(client) { super(client, { name: 'eyes', - group: 'edit-image', + group: 'edit-face', memberName: 'eyes', description: 'Draws emoji eyes onto the faces in an image.', throttling: { diff --git a/package.json b/package.json index 97ca5003..beadc212 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "134.10.0", + "version": "134.11.0", "description": "Your personal server companion.", "main": "Xiao.js", "private": true,