You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/event/listeners/log/messageUpdate.js

29 lines
954 B
JavaScript

const { Listener } = require('discord-akairo');
const LogStats = require('../../../models/').LogStats;
class messageUpdateListener extends Listener {
constructor() {
super('messageUpdate', {
emitter: 'client',
event: 'messageUpdate'
});
}
async exec(oldMessage, newMessage) {
const logStats = await LogStats.findOne({where: {guild: newMessage.guild.id}});
if (logStats) {
const channel = this.client.channels.resolve(await logStats.get('channel'));
let Embed = this.client.util.embed()
.setColor('NAVY')
.setAuthor(`${newMessage.author.username}#${newMessage.author.discriminator}`)
.setTitle(`${newMessage.author.username} modified their message in ${newMessage.channel.name}`)
.addField('Previously', oldMessage, true)
.addField('Currently', newMessage, true)
.setFooter(`Author ID: ${newMessage.author.id}`)
.setTimestamp();
channel.send(Embed);
}
}
}
module.exports = messageUpdateListener;