create-meme -> meme-gen

This commit is contained in:
Daniel Odendahl Jr
2018-09-14 14:48:04 +00:00
parent 5c985b92fb
commit ce35859fc3
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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.
@@ -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: [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "91.2.1",
"version": "91.2.2",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {