From db419e3f6470b7d68a494e6556bc28e08de2cd98 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 18 Aug 2018 12:40:47 +0000 Subject: [PATCH] Move steam card text up a bit more --- commands/avatar-edit/steam-card.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/avatar-edit/steam-card.js b/commands/avatar-edit/steam-card.js index a3e9d768..d4fb2c09 100644 --- a/commands/avatar-edit/steam-card.js +++ b/commands/avatar-edit/steam-card.js @@ -44,9 +44,9 @@ module.exports = class SteamCardCommand extends Command { ctx.drawImage(base, 0, 0); ctx.font = '14px Noto'; ctx.fillStyle = 'black'; - ctx.fillText(user.username, 16, 27); + ctx.fillText(user.username, 16, 25); ctx.fillStyle = 'white'; - ctx.fillText(user.username, 15, 26); + ctx.fillText(user.username, 15, 24); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'steam-card.png' }] }); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);