diff --git a/events/ready.js b/events/ready.js index 41bda93..74a92a1 100644 --- a/events/ready.js +++ b/events/ready.js @@ -1,9 +1,7 @@ -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) + client.user.setActivity(client.config.game) };