This commit is contained in:
lilyissillyyy
2025-10-04 20:04:23 -04:00
parent 7c6ac6e37b
commit 1b9f0200fd
+1 -1
View File
@@ -52,7 +52,7 @@ module.exports = class NeopetCommand extends Command {
}
async run(msg, { pet, mood, flags }) {
const petImg = await petImage(pet, { mood, size: flags.portrait ? 6 : 5 });
const petImg = await petImage(pet, { mood, size: (flags.portrait || flags.p) ? 6 : 5 });
if (!petImg) return msg.say('Could not find any results.');
return msg.say({ files: [{ attachment: petImg.data, name: `${pet}-${mood}.png` }] });
}