fixed the command not working

This commit is contained in:
loicbersier 2019-06-30 22:47:25 +02:00
parent 4ceb666727
commit ee8957913f

View file

@ -15,38 +15,40 @@ class MessageReactionAddListener extends Listener {
async exec(reaction, user) { async exec(reaction, user) {
if (reaction.message.author == user) return; if (reaction.message.author == user) return;
let starboardChannel, shameboardChannel, staremote, starcount, shameemote, shamecount; let starboardChannel, shameboardChannel, staremote, starcount, shameemote, shamecount;
if (fs.existsSync(`./board/star${reaction.message.guild.id}.json`)) {
starboardChannel = require(`../../board/star${reaction.message.guild.id}.json`);
staremote = starboardChannel['emote'];
starcount = starboardChannel['count'];
}
if (fs.existsSync(`./board/shame${reaction.message.guild.id}.json`)) {
shameboardChannel = require(`../../board/shame${reaction.message.guild.id}.json`);
shameemote = shameboardChannel['emote'];
shamecount = shameboardChannel['count'];
}
let messageContent = reaction.message.content; let messageContent = reaction.message.content;
let messageAttachments = reaction.message.attachments.map(u=> u.url); let messageAttachments = reaction.message.attachments.map(u=> u.url);
// Starboard if (fs.existsSync(`./board/star${reaction.message.guild.id}.json`)) {
if (reaction.emoji.name == staremote && reaction.count == starcount) { starboardChannel = require(`../../board/star${reaction.message.guild.id}.json`);
if (messageID.includes(reaction.message.id)) staremote = starboardChannel['emote'];
return console.log('Message already in starboard!'); starcount = starboardChannel['count'];
messageID.push(reaction.message.id); // Starboard
if (reaction.emoji.name == staremote && reaction.count == starcount) {
if (messageID.includes(reaction.message.id))
return console.log('Message already in starboard!');
sendEmbed('starboard', staremote, this.client); messageID.push(reaction.message.id);
sendEmbed('starboard', staremote, this.client);
}
} }
//Shameboard if (fs.existsSync(`./board/shame${reaction.message.guild.id}.json`)) {
if (reaction.emoji.name == shameemote && reaction.count == shamecount) { shameboardChannel = require(`../../board/shame${reaction.message.guild.id}.json`);
if (messageID.includes(reaction.message.id)) shameemote = shameboardChannel['emote'];
return console.log('Message already in starboard!'); shamecount = shameboardChannel['count'];
messageID.push(reaction.message.id); //Shameboard
if (reaction.emoji.name == shameemote && reaction.count == shamecount) {
if (messageID.includes(reaction.message.id))
return console.log('Message already in starboard!');
sendEmbed('shameboard', shameemote, this.client); messageID.push(reaction.message.id);
sendEmbed('shameboard', shameemote, this.client);
}
} }
function sendEmbed(name, emote, client) { function sendEmbed(name, emote, client) {