From 187a0828fc3d91e5eda14cfeeefb10c5743aac7e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 17 Jun 2020 16:46:35 -0400 Subject: [PATCH] Fix --- commands/edit-image/speed-limit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/speed-limit.js b/commands/edit-image/speed-limit.js index c530ee06..2689d22f 100644 --- a/commands/edit-image/speed-limit.js +++ b/commands/edit-image/speed-limit.js @@ -55,7 +55,7 @@ module.exports = class SpeedLimitCommand extends Command { ctx.textAlign = 'center'; ctx.font = '360px Highway Gothic'; ctx.fillStyle = 'black'; - ctx.fillText(limit.toUpperCase(), 303, 356, 475); + ctx.fillText(limit.toUpperCase(), 313, 356, 475); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'speed-limit.png' }] }); } };