From 84dbb2fe51adc139951c82a2cb71533f644f2c99 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 12 Jan 2021 21:57:19 -0500 Subject: [PATCH] Fix --- commands/search/anilist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/anilist.js b/commands/search/anilist.js index 795fb435..e185542d 100644 --- a/commands/search/anilist.js +++ b/commands/search/anilist.js @@ -43,7 +43,7 @@ module.exports = class AnilistCommand extends Command { try { const data = await this.search(query); if (!data || !data.id || !data.name) return msg.say('Could not find any results.'); - return msg.say(`https://anilist.co/user/${data.name}`, { + return msg.say(``, { files: [{ attachment: `https://img.anili.st/user/${data.id}`, name: 'anilist.png' }] }); } catch (err) {