From 2802142a2347df0c5e25c02defa3b31d3de8f497 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 4 Oct 2025 20:06:16 -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 f48c898a..14568e03 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 || flags.p) ? 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` }] }); }