Update i-cant-believe.js

This commit is contained in:
Dragon Fire
2024-05-05 18:35:11 -04:00
committed by GitHub
parent 9b43b8d6c8
commit f5d393d58a
+2 -2
View File
@@ -50,9 +50,9 @@ module.exports = class ICantBelieveCommand extends Command {
ctx.font = this.client.fonts.get('The Lord Night.ttf').toCanvasString(94);
ctx.lineWidth = 6;
ctx.strokeStyle = 'white';
ctx.strokeText(firstUpperCase(text.toLowerCase(), null), 13, 54, 171);
ctx.strokeText(firstUpperCase(text.toLowerCase(), null), 13, 69, 171);
ctx.fillStyle = '#13487b';
ctx.fillText(firstUpperCase(text.toLowerCase(), null), 13, 64, 171);
ctx.fillText(firstUpperCase(text.toLowerCase(), null), 13, 69, 171);
ctx.rotate(8 * (Math.PI / 180));
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'i-cant-believe.png' }] });
}