random activity

This commit is contained in:
Emily 2020-10-21 18:57:26 +11:00
parent 6a952db075
commit 93e5d74c94

View file

@ -4,7 +4,8 @@ module.exports = class {
}
async run (client) {
client.editStatus('online', { name: `Goddess of Discord! | v${client.version}`});
const activity = client.constants.activities.random();
client.editStatus('online', { name: `${activity.message} | v${client.version}`, type: activity.type});
client.logger.event(`Woomy v${client.version} initialized and ready to accept commands!`);
}
};