diff --git a/README.md b/README.md index 0e1c0891..2af3ec75 100644 --- a/README.md +++ b/README.md @@ -611,8 +611,8 @@ Total: 449 * **like:** Sends an "Everyone Liked That" meme with the image of your choice. * **lisa-presentation:** Sends a "Lisa Presentation" meme with the presentation of your choice. * **look-at-this-photograph:** Draws an image or a user's avatar over Nickelback's photograph. +* **meme-gen-classic:** Sends a meme with the text and background of your choice. * **meme-gen-modern:** Sends a meme with the text and image of your choice. -* **meme-gen:** Sends a meme with the text and background of your choice. * **new-password:** Sends a "Weak Password/Strong Password" meme with the passwords of your choice. * **nike-ad:** Sends a "Believe in Something" Nike Ad meme with the text of your choice. * **plankton-plan:** Sends a Plankton's Plan meme with steps of your choice. diff --git a/commands/edit-meme/meme-gen.js b/commands/edit-meme/meme-gen-classic.js similarity index 89% rename from commands/edit-meme/meme-gen.js rename to commands/edit-meme/meme-gen-classic.js index e047ee81..9eafb1c7 100644 --- a/commands/edit-meme/meme-gen.js +++ b/commands/edit-meme/meme-gen-classic.js @@ -5,13 +5,24 @@ const path = require('path'); const { wrapText } = require('../../util/Canvas'); registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Impact.ttf'), { family: 'Impact' }); -module.exports = class MemeGenCommand extends Command { +module.exports = class MemeGenClassicCommand extends Command { constructor(client) { super(client, { - name: 'meme-gen', - aliases: ['meme-generator', 'create-meme'], + name: 'meme-gen-classic', + aliases: [ + 'meme-generator-classic', + 'create-meme-classic', + 'meme-gen-c', + 'classic-meme-gen', + 'classic-meme-generator', + 'create-classic-meme', + 'c-meme-gen', + 'c-meme-generator', + 'create-c-meme', + 'mgc' + ], group: 'edit-meme', - memberName: 'meme-gen', + memberName: 'meme-gen-classic', description: 'Sends a meme with the text and background of your choice.', throttling: { usages: 1, diff --git a/commands/edit-meme/meme-gen-modern.js b/commands/edit-meme/meme-gen-modern.js index 88ceebd2..883d8dd3 100644 --- a/commands/edit-meme/meme-gen-modern.js +++ b/commands/edit-meme/meme-gen-modern.js @@ -12,6 +12,9 @@ module.exports = class MemeGenModernCommand extends Command { super(client, { name: 'meme-gen-modern', aliases: [ + 'meme-gen', + 'meme-generator', + 'create-meme', 'meme-generator-modern', 'create-meme-modern', 'meme-gen-m', @@ -20,7 +23,9 @@ module.exports = class MemeGenModernCommand extends Command { 'create-modern-meme', 'm-meme-gen', 'm-meme-generator', - 'create-m-meme' + 'create-m-meme', + 'mgm', + 'mg' ], group: 'edit-meme', memberName: 'meme-gen-modern', diff --git a/package.json b/package.json index 05f0b7b6..a684b46e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "114.34.0", + "version": "115.0.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {