From 6e5b58277088cadc6746b9f0b6a82ec3d63bace7 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 5 Jun 2019 21:06:44 -0400 Subject: [PATCH] Fix --- commands/avatar-edit/steam-now-playing.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/avatar-edit/steam-now-playing.js b/commands/avatar-edit/steam-now-playing.js index a9abc434..2d40d6e6 100644 --- a/commands/avatar-edit/steam-now-playing.js +++ b/commands/avatar-edit/steam-now-playing.js @@ -57,8 +57,7 @@ module.exports = class SteamNowPlayingCommand extends Command { ctx.drawImage(base, 0, 0); ctx.drawImage(avatar, 26, 26, 41, 42); ctx.fillStyle = '#90b93c'; - ctx.font = '15px Noto'; - ctx.textBaseline = 'bottom'; + ctx.font = '14px Noto'; ctx.fillText(user.username, 80, 38); ctx.fillText(shortenText(ctx, game, 200), 80, 72); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'steam-now-playing.png' }] });