From 1a92f6f621ce1d82f3708246024cdd13d3ce091b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 16:24:50 -0400 Subject: [PATCH] Fix --- commands/edit-meme/i-cant-believe.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-meme/i-cant-believe.js b/commands/edit-meme/i-cant-believe.js index 08d646e8..df251d61 100644 --- a/commands/edit-meme/i-cant-believe.js +++ b/commands/edit-meme/i-cant-believe.js @@ -49,9 +49,9 @@ module.exports = class ICantBelieveCommand extends Command { ctx.font = this.client.fonts.get('The Lord Night.ttf').toCanvasString(94); ctx.lineWidth = 6; ctx.strokeStyle = 'white'; - ctx.strokeText(firstUpperCase(text, null), 13, 54, 171); + ctx.strokeText(firstUpperCase(text.toLowerCase(), null), 13, 54, 171); ctx.fillStyle = '#13487b'; - ctx.fillText(firstUpperCase(text, null), 13, 54, 171); + ctx.fillText(firstUpperCase(text.toLowerCase(), null), 13, 54, 171); ctx.rotate(8 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'i-cant-believe.png' }] }); }