From ce35859fc3b372312f7d74ddab2a6053a2b4c0f2 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 14 Sep 2018 14:48:04 +0000 Subject: [PATCH] create-meme -> meme-gen --- README.md | 2 +- commands/image-edit/{create-meme.js => meme-gen.js} | 8 ++++---- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename commands/image-edit/{create-meme.js => meme-gen.js} (89%) diff --git a/README.md b/README.md index edaffc89..1e65bf1e 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,6 @@ on the [home server](https://discord.gg/sbMe32W). * **be-like-bill:** Sends a "Be Like Bill" meme with the name of your choice. * **color:** Sends an image of the color you choose. * **contrast:** Draws an image or a user's avatar but with contrast. -* **create-meme:** Sends a meme with the text and background of your choice. * **create-qr-code:** Converts text to a QR Code. * **demotivational-poster:** Draws an image or a user's avatar and the text you specify as a demotivational poster. * **distort:** Draws an image or a user's avatar but distorted. @@ -244,6 +243,7 @@ on the [home server](https://discord.gg/sbMe32W). * **ifunny:** Draws an image with the iFunny logo. * **illegal:** Makes President Trump make your text illegal. * **invert:** Draws an image or a user's avatar but inverted. +* **meme-gen:** Sends a meme with the text and background of your choice. * **minecraft-skin:** Sends the Minecraft skin for a user. * **nike-ad:** Sends a "Believe in Something" Nike Ad meme with the text of your choice. * **needs-more-jpeg:** Draws an image or a user's avatar as a low quality JPEG. diff --git a/commands/image-edit/create-meme.js b/commands/image-edit/meme-gen.js similarity index 89% rename from commands/image-edit/create-meme.js rename to commands/image-edit/meme-gen.js index a080ff37..1ec6832f 100644 --- a/commands/image-edit/create-meme.js +++ b/commands/image-edit/meme-gen.js @@ -1,13 +1,13 @@ const Command = require('../../structures/Command'); const request = require('node-superfetch'); -module.exports = class CreateMemeCommand extends Command { +module.exports = class MemeGenCommand extends Command { constructor(client) { super(client, { - name: 'create-meme', - aliases: ['meme-generator', 'meme-gen'], + name: 'meme-gen', + aliases: ['meme-generator', 'create-meme'], group: 'image-edit', - memberName: 'create-meme', + memberName: 'meme-gen', description: 'Sends a meme with the text and background of your choice.', clientPermissions: ['ATTACH_FILES'], args: [ diff --git a/package.json b/package.json index e42567a0..f7b6ca9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "91.2.1", + "version": "91.2.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {