diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js
index b423cb6..ac4dee3 100644
--- a/commands/search/searchChar.js
+++ b/commands/search/searchChar.js
@@ -59,17 +59,19 @@ class char extends Command{
async function sendMessage(id)
{
const data = await new aniList().getCharInfo(id);
+ console.log('Command: SearchChar: SendMessage: Data', 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'})
.setColor(0x003284)
- .setDescription(data.description)//.split('~! ')[1].replaceAll('
', ' ').substring(0, 1500) + "...")
+ .setDescription(data.description.split('~! ')[1].replaceAll('
', ' ').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.image)
.setThumbnail(data.image)
.setTimestamp()
.addFields(
- {name:'Gender:', value:data.gender, inline:true});
+ {name:'Gender:', value:data.gender, inline:true},
+ {name:'Page', value:data.url, inline:true});
const randomID = Random();
const row = new ActionRowBuilder()
.addComponents(
diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js
index bba907a..97df80c 100644
--- a/commands/search/searchManga.js
+++ b/commands/search/searchManga.js
@@ -65,7 +65,7 @@ class manga extends Command{
.setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`)
.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
.setColor(0x003284)
- .setDescription(data.description)//.replaceAll('
', ' ').substring(0, 1500) + "...")
+ .setDescription(data.description.replaceAll('
', ' ').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.coverImage)
.setThumbnail(data.coverImage)
diff --git a/lib.js b/lib.js
index 508c102..22f4ff3 100644
--- a/lib.js
+++ b/lib.js
@@ -184,7 +184,6 @@ class _Client extends Client
*/
async enableCommands()
{
- //use needs admin here!!!!
this.on("messageCreate", message=>
{
this.checkForInvites(message);
@@ -739,6 +738,7 @@ class aniListCli {
full
native
}
+ siteUrl
gender
image {
medium
@@ -782,6 +782,7 @@ class aniListCli {
id:char.id,
name:char.name,
gender:char.gender,
+ url:char.siteUrl,
image:char.image.medium
})
}
@@ -803,6 +804,7 @@ class aniListCli {
native
}
gender
+ siteUrl
image {
medium
}
@@ -839,6 +841,7 @@ class aniListCli {
return {
name:data.data.Character.name,
gender:data.data.Character.gender,
+ url:data.data.Character.siteUrl,
image:data.data.Character.image.medium,
description:data.data.Character.description,
}