discord-bot-manager / events /presenceUpdate.js
lucianotonet's picture
Test on Hugging Face
5e641bf
raw
history blame contribute delete
225 Bytes
const { Events } = require('discord.js');
module.exports = {
name: Events.presenceUpdate,
execute(oldPresence, newPresence) {
console.log(`User ${newPresence.userID} has updated their presence.`);
}
}