From 5bc61172f54cb99516be11ffdd9dc14f45b40204 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 11 Sep 2017 17:48:21 +0000 Subject: [PATCH] Move that down about 10 pixels --- commands/avatar-edit/steam-now-playing.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/avatar-edit/steam-now-playing.js b/commands/avatar-edit/steam-now-playing.js index f7cfd07e..ae6fc4b4 100644 --- a/commands/avatar-edit/steam-now-playing.js +++ b/commands/avatar-edit/steam-now-playing.js @@ -55,8 +55,8 @@ module.exports = class SteamNowPlayingCommand extends Command { ctx.drawImage(avatar, 21, 21, 32, 32); ctx.fillStyle = '#90ba3c'; ctx.font = '10px Roboto'; - ctx.fillText(member.displayName, 63, 16); - ctx.fillText(game, 63, 42); + ctx.fillText(member.displayName, 63, 26); + ctx.fillText(game, 63, 52); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'steam-now-playing.png' }] }); } catch (err) { return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);