From 2b39d295b006e9ad3677109b5e109181a89235cb Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 16:14:14 -0400 Subject: [PATCH] Fix --- commands/edit-meme/i-cant-believe.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/edit-meme/i-cant-believe.js b/commands/edit-meme/i-cant-believe.js index a5cc6865..c7a9b438 100644 --- a/commands/edit-meme/i-cant-believe.js +++ b/commands/edit-meme/i-cant-believe.js @@ -46,11 +46,11 @@ module.exports = class ICantBelieveCommand extends Command { ctx.drawImage(base, 0, 0); ctx.rotate(-7 * (Math.PI / 180)); ctx.font = this.client.fonts.get('The Lord Night.ttf').toCanvasString(94); - ctx.lineWidth = 4; + ctx.lineWidth = 6; ctx.strokeStyle = 'white'; - ctx.strokeText(text, 13, 80, 171); + ctx.strokeText(text, 13, 64, 171); ctx.fillStyle = '#13487b'; - ctx.fillText(text, 13, 80, 171); + ctx.fillText(text, 13, 64, 171); ctx.rotate(7 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'i-cant-believe.png' }] }); }