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
2020-11-15 18:47:45 +01:00

10 lines
245 B
JavaScript

const config = require("../config/bot.json");
module.exports = async (client) => {
console.log(`Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`);
client.user.setActivity(config.game)
};