Fix images being too large... kind of

This commit is contained in:
lilyissillyyy
2025-09-05 23:57:52 -04:00
parent 5f3c74481b
commit deb42234b9
10 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -46,6 +46,6 @@ module.exports = class AnimeEyesCommand extends Command {
ctx.drawImage(rightEye, leftEyeX, leftEyeY, eyeWidth, eyeHeight);
ctx.drawImage(leftEye, rightEyeX, rightEyeY, eyeWidth, eyeHeight);
}
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'anime-eyes.png' }] });
return msg.say({ files: [{ attachment: canvas.toBuffer('image/jpeg'), name: 'anime-eyes.jpeg' }] });
}
};