diff --git a/commands/search/neopet.js b/commands/search/neopet.js index 6d44ef97..c6f8d2a5 100644 --- a/commands/search/neopet.js +++ b/commands/search/neopet.js @@ -34,7 +34,7 @@ module.exports = class NeopetCommand extends Command { }); const $ = cheerio.load(response.text); const link = $('textarea').first().text(); - if (!link) return message.say(':x: Error! Pet not found!'); + if (!link.includes('cp')) return message.say(':x: Error! Pet not found!'); return message.say(link); } catch (err) {