From dfb479cde0ab425f231e0491b680287c0240a2dc Mon Sep 17 00:00:00 2001 From: masterhc Date: Thu, 8 Feb 2024 21:26:31 +0000 Subject: [PATCH] Removed unnecessary log --- commands/search/searchChar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index dbc1382..06fd9fb 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -61,7 +61,7 @@ class char extends Command{ const data = await new Anilist().getCharInfo(id); data.description = data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, ''); data.description = data.description.length>1500?(data.description.substring(0, 1500) + "..."):data.description; - console.log(data) + // console.log(data) const embed = new EmbedBuilder() .setTitle(`${data.name.full} (${data.name.native})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})