Unit_AI/events/ready.js
2024-06-01 16:28:07 -04:00

18 lines
No EOL
448 B
JavaScript

const Discord = require('discord.js');
const chalk = require('chalk');
module.exports = async (client) => {
await client.user.setPresence({
activities: [
{
name: `Sleepless UNIT`,
type: Discord.ActivityType.Watching
}
],
status: 'streaming'
});
console.log(chalk.bold.greenBright(`${client.user.tag} is online and ready to answer your questions!`));
};