diff --git a/commands/edit-image/jeopardy-question.js b/commands/edit-image/jeopardy-question.js index 19fefb81..b1c1a22e 100644 --- a/commands/edit-image/jeopardy-question.js +++ b/commands/edit-image/jeopardy-question.js @@ -50,7 +50,7 @@ module.exports = class JeopardyQuestionCommand extends Command { ctx.textBaseline = 'top'; ctx.fillStyle = 'white'; ctx.font = '62px Korinna'; - const lines = await wrapText(ctx, text, 813); + const lines = await wrapText(ctx, text.toUpperCase(), 813); const topMost = (canvas.height / 2) - (((62 * lines.length) / 2) + ((27 * (lines.length - 1)) / 2)); ctx.fillStyle = 'black'; ctx.fillText(lines.join('\n'), (canvas.width / 2) + 6, topMost + 6);