thaldrin/DiscordEvents/ready.js

10 lines
201 B
JavaScript
Raw Normal View History

2019-11-10 08:42:09 +00:00
const { log } = require('../utils/index');
2019-10-14 11:19:41 +00:00
module.exports = {
2019-11-10 08:42:09 +00:00
name: 'ready',
run: async (client) => {
log.hasStarted();
2019-11-10 22:09:00 +00:00
client.user.setActivity(`'help | thaldr.in`, { type: `WATCHING` });
2019-11-10 08:42:09 +00:00
}
2019-10-14 11:19:41 +00:00
};