From 77da9dbd70c1ca3aaa9833ab0e01ec96603ac05a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 28 Apr 2024 15:40:40 -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 3df039f6..b2e35831 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -106,7 +106,7 @@ module.exports = class TweetCommand extends Command { const bookmarks = randomRange(Math.ceil(userData.followers * 0.000015), Math.ceil(userData.followers * 0.00002)); const views = randomRange(Math.ceil(userData.followers * 10), Math.ceil(userData.followers * 30)); ctx.drawImage(base1, 0, 0); - const base2StartY = base1.height + linesLen + (image ? imageHeight + 15 : 0); + const base2StartY = base1.height + linesLen + (image ? imageHeight + 30 : 0); ctx.drawImage(base2, 0, base2StartY); ctx.textBaseline = 'top'; ctx.font = this.client.fonts.get('ChirpBold.ttf').toCanvasString(18);