diff --git a/commands/edit-meme/i-cant-believe.js b/commands/edit-meme/i-cant-believe.js index c7a9b438..bbf9d5fb 100644 --- a/commands/edit-meme/i-cant-believe.js +++ b/commands/edit-meme/i-cant-believe.js @@ -44,14 +44,14 @@ module.exports = class ICantBelieveCommand extends Command { const ctx = canvas.getContext('2d'); ctx.textBaseline = 'top'; ctx.drawImage(base, 0, 0); - ctx.rotate(-7 * (Math.PI / 180)); + ctx.rotate(-8 * (Math.PI / 180)); ctx.font = this.client.fonts.get('The Lord Night.ttf').toCanvasString(94); ctx.lineWidth = 6; ctx.strokeStyle = 'white'; - ctx.strokeText(text, 13, 64, 171); + ctx.strokeText(text, 13, 54, 171); ctx.fillStyle = '#13487b'; - ctx.fillText(text, 13, 64, 171); - ctx.rotate(7 * (Math.PI / 180)); + ctx.fillText(text, 13, 54, 171); + ctx.rotate(8 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'i-cant-believe.png' }] }); } };