diff --git a/commands/events/horoscope.js b/commands/events/horoscope.js index b150eb09..0cb87454 100644 --- a/commands/events/horoscope.js +++ b/commands/events/horoscope.js @@ -45,6 +45,7 @@ module.exports = class HoroscopeCommand extends Command { async fetchHoroscope(sign) { const { text } = await request.get(`https://new.theastrologer.com/${sign}/`); const $ = cheerio.load(text); - return $('#today').find('p').text(); + return $('#today').find('p').text() + .split('Intensity: ')[0]; } };