|
|
|
@ -123,7 +123,8 @@ class _Client extends Client
|
|
|
|
|
if(message.content.startsWith('!'))
|
|
|
|
|
{
|
|
|
|
|
let commandName=message.content.split('!')[1].split(' ')[0];
|
|
|
|
|
let args = message.content.split(`!${commandName}`)[1].split(' ');
|
|
|
|
|
let args = message.content.split(' ');
|
|
|
|
|
args.splice(0,1);
|
|
|
|
|
args = args.filter(n=>n);
|
|
|
|
|
if(this.commands.get(commandName))
|
|
|
|
|
{
|
|
|
|
@ -201,13 +202,16 @@ class _Client extends Client
|
|
|
|
|
link:data.feed.entry[0].link._attributes.href,
|
|
|
|
|
image:data.feed.entry[0].link._attributes.href.split('=')[1],
|
|
|
|
|
title:data.feed.entry[0].title._text,
|
|
|
|
|
author:{
|
|
|
|
|
author:
|
|
|
|
|
{
|
|
|
|
|
name:data.feed.entry[0].author.name._text,
|
|
|
|
|
url:data.feed.entry[0].author.uri._text
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const channel = this.channels.cache.get(feed.ChannelId)
|
|
|
|
|
if(!res) return false;
|
|
|
|
|
const channel = this.channels.cache.get(feed.ChannelId);
|
|
|
|
|
if(!channel) return false;
|
|
|
|
|
const lastSentMessage = await channel.messages.fetch().then(res=>
|
|
|
|
|
{
|
|
|
|
|
for(var item of res)
|
|
|
|
@ -299,12 +303,11 @@ class ErrorMessage
|
|
|
|
|
*
|
|
|
|
|
* @param {ErrorType} errorType
|
|
|
|
|
* @param {Message} message
|
|
|
|
|
* @param {[... String]} extraMessages
|
|
|
|
|
* @param {[String]} extraMessages
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
async send(errorType,message, extraMessages)
|
|
|
|
|
{
|
|
|
|
|
console.log('Sending Error Message')
|
|
|
|
|
if (!message.channel.id) return;
|
|
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
|
.setColor(0x4d0000)
|
|
|
|
|