Forgot to actaully call the new error handled function to connect to the database

master
Cristiano Pires 2 years ago
parent 406c376408
commit 94c279b70c

@ -69,9 +69,10 @@ function connectToDB()
bot.on('ready', () =>
{
mongoose.Promise = global.Promise;
connectToDB();
console.log(`--------------------------\n ${bot.user.tag.split('#')[0]} \n Ready \n on `+bot.guilds.cache.size+" guilds \n serving "+bot.users.cache.size+" users \n--------------------------")
bot.user.setPresence({
activities: [{ name: `!help`, type: ActivityType.Listening }],
activities: [{ name: `!help`, type: ActivityType.Listening}],
status: 'online',
});
console.timeEnd('StartUp');

Loading…
Cancel
Save