From 94c279b70c73d236e8cda133fbb54c7002f10c8d Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Tue, 28 Feb 2023 22:21:45 +0000 Subject: [PATCH] Forgot to actaully call the new error handled function to connect to the database --- server.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 5f88136..3aa1775 100644 --- a/server.js +++ b/server.js @@ -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');