Compare commits

..

No commits in common. "2fefe312421a5923f089d769925dbdfbd7cd2301" and "1eb2180ce7cc12decb118ce944f2057dc8cac514" have entirely different histories.

3 changed files with 9 additions and 8 deletions

View file

@ -10,6 +10,13 @@ class messageDeleteListener extends Listener {
} }
async exec(message) { async exec(message) {
if (message.partial) {
await message.fetch()
.catch(err => {
return console.error(err);
});
}
if (!message.guild) return; if (!message.guild) return;
if (!message.author) return; if (!message.author) return;

View file

@ -1,6 +1,6 @@
const { Listener } = require('discord-akairo'); const { Listener } = require('discord-akairo');
const fs = require('fs'); const fs = require('fs');
let messageID = require('../../json/messageID.json'); // Save messages that entered starboard so we can edit/remove the embed let messageID = require('../../json/messageID.json'); // Save messages that ented starboard so we can edit/remove the embed
class MessageReactionAddListener extends Listener { class MessageReactionAddListener extends Listener {
@ -12,13 +12,6 @@ class MessageReactionAddListener extends Listener {
} }
async exec(reaction) { async exec(reaction) {
if (reaction.partial) {
await reaction.fetch()
.catch(err => {
return console.error(err);
});
}
if (reaction.message.partial) { if (reaction.message.partial) {
await reaction.message.fetch() await reaction.message.fetch()
.catch(err => { .catch(err => {

View file

@ -19,6 +19,7 @@ class hahaYesClient extends AkairoClient {
}, { }, {
partials: ['MESSAGE', 'REACTION'], partials: ['MESSAGE', 'REACTION'],
disableMentions: 'everyone', disableMentions: 'everyone',
fetchAllMembers: true,
}); });
this.commandHandler = new CommandHandler(this, { this.commandHandler = new CommandHandler(this, {