ready.js 279 B

12345678
  1. module.exports = async (client) => {
  2. client.Ready = true;
  3. client.user.setActivity("Music", { type: "LISTENING" }).then(() => {
  4. client.Manager.init(client.user.id);
  5. client.log("Successfully Logged in as " + client.user.tag);
  6. });
  7. client.RegisterSlashCommands();
  8. };