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
@@ -51,6 +51,6 @@ module.exports = class DannyDevitoCommand extends Command {
height * 1.4
);
}
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'danny-devito.png' }] });
return msg.say({ files: [{ attachment: canvas.toBuffer('image/jpeg'), name: 'danny-devito.jpeg' }] });
}
};