remove ~! !~

master
masterhc 1 year ago
parent 567aa9b93d
commit 97514dbee7

@ -63,7 +63,7 @@ class anime extends Command{
.setTitle(`${data.title.romaji} (${data.title.native + data.title.english?'/'+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('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.coverImage)
.setThumbnail(data.coverImage)

@ -63,7 +63,7 @@ class char extends Command{
.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.replaceAll('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.image)
.setThumbnail(data.image)

@ -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('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.addFields({name:'Page', value:data.url, inline:true})
.setImage(data.coverImage)

Loading…
Cancel
Save