discord-bot-manager / events /typingStart.js
lucianotonet's picture
Test on Hugging Face
5e641bf
raw
history blame contribute delete
339 Bytes
const { Events } = require('discord.js');
module.exports = {
name: Events.TypingStart,
execute({ channel, user }) {
let location = channel.isThread() ? `thread ${channel.name} in ${channel.parent.name} channel` : `${channel.name} channel`;
console.log(`${user.username} is typing in the ${location}...`);
}
}