diff --git a/commands/avatar-edit/steam-now-playing.js b/commands/avatar-edit/steam-now-playing.js index ae6fc4b4..7d6739d3 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, 26); - ctx.fillText(game, 63, 52); + ctx.fillText(member.displayName, 63, 28); + ctx.fillText(game, 63, 54); 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!`);