From 5420ebd9f5e7d256a2ecd78bf84165ba133e2af8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 29 Apr 2021 19:46:07 -0400 Subject: [PATCH] Fix bottom text --- commands/edit-meme/bottom-text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/bottom-text.js b/commands/edit-meme/bottom-text.js index 8706765d..a7ff90fa 100644 --- a/commands/edit-meme/bottom-text.js +++ b/commands/edit-meme/bottom-text.js @@ -39,6 +39,6 @@ module.exports = class BottomTextCommand extends Command { } run(msg, { top, image }) { - return this.client.registry.commands.get('meme-gen-classic').run(msg, { top, bottom: 'BOTTOM TEXT', image }); + return this.client.registry.commands.get('meme-gen').run(msg, { top, bottom: 'BOTTOM TEXT', image }); } };