From 652f9bcfb0af6554c3cc25735f3664760b9ba152 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 14 May 2017 17:29:33 +0000 Subject: [PATCH] Almost Done --- commands/search/anime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/anime.js b/commands/search/anime.js index 9b1f7419..955ab726 100644 --- a/commands/search/anime.js +++ b/commands/search/anime.js @@ -40,7 +40,7 @@ module.exports = class AnimeCommand extends Command { .setTitle(`${$('title').first().text()} (${$('english').first().text()})`) .setDescription($('synopsis').first().text().replace(/(
)/g, '').substr(0, 2000)) .addField('Type', - `${$('type').first().text()} - ${$('status').first().text()}`) + `${$('type').first().text()} - ${$('status').first().text()}`, true) .addField('Episodes', $('episodes').first().text(), true) .addField('Start Date', @@ -49,7 +49,7 @@ module.exports = class AnimeCommand extends Command { $('end_date').first().text(), true); return msg.embed(embed); } catch (err) { - return msg.say(err); + return msg.say('Error: No Results.'); } } };