thaldrin/DiscordEvents/ready.js

10 lines
179 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();
client.user.setActivity(`nyeh`, { type: 2 });
}
2019-10-14 11:19:41 +00:00
};