From f5d393d58a4daeeb50354c37c62544a9b1a9895b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 5 May 2024 18:35:11 -0400 Subject: [PATCH] Update i-cant-believe.js --- 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 96bae2ae..7ff06b2d 100644 --- a/commands/edit-meme/i-cant-believe.js +++ b/commands/edit-meme/i-cant-believe.js @@ -50,9 +50,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.toLowerCase(), null), 13, 54, 171); + ctx.strokeText(firstUpperCase(text.toLowerCase(), null), 13, 69, 171); ctx.fillStyle = '#13487b'; - ctx.fillText(firstUpperCase(text.toLowerCase(), null), 13, 64, 171); + ctx.fillText(firstUpperCase(text.toLowerCase(), null), 13, 69, 171); ctx.rotate(8 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'i-cant-believe.png' }] }); }