diff --git a/commands/edit-meme/whiteboard.js b/commands/edit-meme/whiteboard.js index cabdc66b..c7739bdb 100644 --- a/commands/edit-meme/whiteboard.js +++ b/commands/edit-meme/whiteboard.js @@ -76,7 +76,7 @@ module.exports = class WhiteboardCommand extends Command { const resolveTopMost = 500 - (((fontSize * resolveLines.length) / 2) + ((10 * (resolveLines.length - 1)) / 2)); for (let i = 0; i < resolveLines.length; i++) { const height = resolveTopMost + ((fontSize + 10) * i); - ctx.fillText(resolveLines[i], 190, height); + ctx.fillText(resolveLines[i], 195, height); } return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'whiteboard.png' }] }); } catch (err) {