Bug fixes & update (v2.0.0)

This commit is contained in:
Zerio
2020-11-15 18:47:45 +01:00
committed by GitHub
parent 6ee57795a0
commit 4f8194576f

View File

@@ -1,11 +1,9 @@
const config = require(`../config/bot.json`) const config = require("../config/bot.json");
module.exports = async (client) => { module.exports = async (client) => {
//If the bot is ready it sends a message in the console
console.log(`Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`); console.log(`Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`);
//Game
client.user.setActivity(config.game) client.user.setActivity(config.game)
} };