From 4e0d5195816228d5ed61652a80c1407f56d54f40 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 28 Apr 2024 15:00:04 -0400 Subject: [PATCH] Fix --- commands/edit-image-text/tweet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index 8028e055..a4859bb0 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -97,7 +97,7 @@ module.exports = class TweetCommand extends Command { imageCtx.strokeStyle = '#303336'; imageCtx.lineWidth = 5; imageCtx.stroke(); - ctx.drawImage(imageCanvas, 17, base1.height + linesLen, imageWidth, imageHeight + 15); + ctx.drawImage(imageCanvas, 17, base1.height + linesLen + 15, imageWidth, imageHeight); } const likes = randomRange(Math.ceil(userData.followers * 0.0015), Math.ceil(userData.followers * 0.002)); const retweets = randomRange(Math.ceil(userData.followers * 0.00015), Math.ceil(userData.followers * 0.0002));