meme-gen -> meme-gen-classic

This commit is contained in:
Dragon Fire
2020-05-31 13:51:28 -04:00
parent c2546dc94d
commit 525d256596
4 changed files with 23 additions and 7 deletions
+1 -1
View File
@@ -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.
@@ -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,
+6 -1
View File
@@ -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',
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "114.34.0",
"version": "115.0.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {