From 5f86d41eea1d455166006e794f5a85db02b58757 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 5 Jun 2019 21:15:23 -0400 Subject: [PATCH] Fix --- 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 2d40d6e6..45ae70fa 100644 --- a/commands/avatar-edit/steam-now-playing.js +++ b/commands/avatar-edit/steam-now-playing.js @@ -58,8 +58,8 @@ module.exports = class SteamNowPlayingCommand extends Command { ctx.drawImage(avatar, 26, 26, 41, 42); ctx.fillStyle = '#90b93c'; ctx.font = '14px Noto'; - ctx.fillText(user.username, 80, 38); - ctx.fillText(shortenText(ctx, game, 200), 80, 72); + ctx.fillText(user.username, 80, 34); + ctx.fillText(shortenText(ctx, game, 200), 80, 70); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'steam-now-playing.png' }] }); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);