From 1b9f0200fdfaec9acd95fa95cb616ba35ab5dbcb Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 4 Oct 2025 20:04:23 -0400 Subject: [PATCH] Fix --- commands/search/neopet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/neopet.js b/commands/search/neopet.js index 38022d8e..f48c898a 100644 --- a/commands/search/neopet.js +++ b/commands/search/neopet.js @@ -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` }] }); }