From 42a7730c6ef23f21a4b0f15edeafa3f2fb4a76d7 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 17 Jun 2020 16:43:18 -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 20a08597..6807ba1f 100644 --- a/commands/edit-image/speed-limit.js +++ b/commands/edit-image/speed-limit.js @@ -54,7 +54,7 @@ module.exports = class SpeedLimitCommand extends Command { ctx.textBaseline = 'top'; ctx.font = '360px Highway Gothic'; ctx.fillStyle = 'black'; - ctx.fillText(limit.toUpperCase(), 87, 356, 475); + ctx.fillText(limit.toUpperCase(), 77, 356, 475); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'speed-limit.png' }] }); } };