Migrate user avatar update notifications

This commit is contained in:
2023-11-07 18:25:04 +01:00
parent 45e2f42bcf
commit c32fb9c793
3 changed files with 43 additions and 2 deletions

View File

@@ -3,6 +3,6 @@ const { Events } = require('discord.js');
module.exports = {
name: Events.MessageCreate,
async execute(message) {
console.log(`[${message.guild.name}/${message.channe.name}]${message.author.globalName}: ${message.content}`);
console.log(`[${message.guild.name}/${message.channel.name}]${message.author.globalName}: ${message.content}`);
},
};