10 lines
245 B
JavaScript
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)
|
|
|
|
};
|