From ad6b2b27beebf9912d6d6943ef3a456febc608a2 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 9 May 2024 16:07:01 -0400 Subject: [PATCH] Fix --- commands/edit-image-text/tweet.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index 603dfc60..21b323cd 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -202,6 +202,7 @@ module.exports = class TweetCommand extends Command { ctx.clip(); } ctx.drawImage(avatar, 17, 84, 52, 52); + canvas.height -= 1; return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'tweet.png' }] }); }