From c3a0d18ac3c08e202d7c8a4819254e48e357ba24 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 8 Mar 2020 18:11:15 -0400 Subject: [PATCH] A bit more to the right --- commands/avatar-edit/rip.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/avatar-edit/rip.js b/commands/avatar-edit/rip.js index 7ee5275a..21abbb76 100644 --- a/commands/avatar-edit/rip.js +++ b/commands/avatar-edit/rip.js @@ -65,11 +65,11 @@ module.exports = class RipCommand extends Command { ctx.textAlign = 'center'; ctx.font = '62px Coffin Stone'; ctx.fillStyle = 'black'; - ctx.fillText(user.username, 432, 330, 500); + ctx.fillText(user.username, 438, 330, 500); ctx.fillStyle = 'white'; - if (cause) ctx.fillText(cause, 432, 910, 500); + if (cause) ctx.fillText(cause, 438, 910, 500); ctx.font = '37px Coffin Stone'; - ctx.fillText('In Loving Memory of', 432, 292); + ctx.fillText('In Loving Memory of', 438, 292); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'rip.png' }] }); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);