From 09b01fcd3e662c9f7a4eba03457dd3dc37d3b682 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 10 May 2017 22:44:50 +0000 Subject: [PATCH] Card --- commands/avataredit/card.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/avataredit/card.js b/commands/avataredit/card.js index 4dbdba9e..00f0232e 100644 --- a/commands/avataredit/card.js +++ b/commands/avataredit/card.js @@ -52,16 +52,16 @@ module.exports = class CardCommand extends Command { ctx.drawImage(base, 0, 0); ctx.font = '18px Open Sans'; ctx.fillStyle = 'black'; - ctx.fillText(member.displayName, 27, 65); + ctx.fillText(member.displayName, 30, 65); ctx.fillText('Discord Join Date:', 148, 400); ctx.fillText(moment(member.user.createdTimestamp).format('MMMM Do YYYY'), 148, 420); ctx.fillText('Server Join Date:', 148, 457); ctx.fillText(moment(member.joinedTimestamp).format('MMMM Do YYYY'), 148, 477); - ctx.fillText(rarity, 70, 416); - ctx.fillText(cardID, 58, 460); + ctx.fillText(rarity, 73, 413); + ctx.fillText(cardID, 60, 457); ctx.font = '14px Open Sans'; ctx.fillText(member.id, 30, 355); - ctx.fillText(`#${member.user.discriminator}`, 310, 355); + ctx.fillText(`#${member.user.discriminator}`, 313, 355); }; const cardImg = await request .get('https://i.imgur.com/6j8RHk1.png');