This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
legacy-musicbot/events/ready.js
2021-09-23 22:22:33 +02:00

5 lines
258 B
JavaScript

module.exports = async (client) => {
console.log(`Logged to the client ${client.user.username}\n-> Ready on ${client.guilds.cache.size} servers for a total of ${client.users.cache.size} users`);
client.user.setActivity(client.config.app.playing);
};