From 8bd76fa5a67ff23c55244ea7044ac263f5ef9e55 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 6 May 2024 10:13:36 -0400 Subject: [PATCH] Fix --- commands/edit-avatar/rip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-avatar/rip.js b/commands/edit-avatar/rip.js index 807eb260..b1dd3fb2 100644 --- a/commands/edit-avatar/rip.js +++ b/commands/edit-avatar/rip.js @@ -67,7 +67,7 @@ module.exports = class RipCommand extends Command { ctx.textAlign = 'center'; ctx.font = this.client.fonts.get('CoffinStone.otf').toCanvasString(62); this.fillPressedText(ctx, user.username, 438, 330, 500); - if (cause) this.fillPressedText(ctx, cause, 438, 915, 500); + if (cause) this.fillPressedText(ctx, cause, 438, 920, 500); ctx.font = this.client.fonts.get('CoffinStone.otf').toCanvasString(37); this.fillPressedText(ctx, 'In Loving Memory of', 438, 292); return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'rip.png' }] });