From d0192a594a6ca9e229815b09c95138749e511344 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 8 Mar 2020 18:09:03 -0400 Subject: [PATCH] Fix --- commands/avatar-edit/rip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/avatar-edit/rip.js b/commands/avatar-edit/rip.js index 1dbe292f..7ee5275a 100644 --- a/commands/avatar-edit/rip.js +++ b/commands/avatar-edit/rip.js @@ -65,9 +65,9 @@ module.exports = class RipCommand extends Command { ctx.textAlign = 'center'; ctx.font = '62px Coffin Stone'; ctx.fillStyle = 'black'; - ctx.fillText(user.username, 432, 340, 500); + ctx.fillText(user.username, 432, 330, 500); ctx.fillStyle = 'white'; - if (cause) ctx.fillText(cause, 432, 920, 500); + if (cause) ctx.fillText(cause, 432, 910, 500); ctx.font = '37px Coffin Stone'; ctx.fillText('In Loving Memory of', 432, 292); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'rip.png' }] });