diff --git a/commands/edit-image/zero-dialogue.js b/commands/edit-image/zero-dialogue.js index edef0724..16d07501 100644 --- a/commands/edit-image/zero-dialogue.js +++ b/commands/edit-image/zero-dialogue.js @@ -61,6 +61,7 @@ module.exports = class ZeroDialogueCommand extends Command { ctx.drawImage(base, 0, 0); ctx.font = '42px MM Zero'; ctx.fillStyle = 'white'; + ctx.textBaseline = 'top'; let text = await wrapText(ctx, quote, 425); text = text.length > 2 ? `${text.slice(2).join('\n')}...` : text.join('\n'); ctx.fillText(text, 8, 8);