|
|
|
@ -56,12 +56,13 @@ const bot = new Client({ intents: [
|
|
|
|
|
|
|
|
|
|
function connectToDB()
|
|
|
|
|
{
|
|
|
|
|
mongoose.connect(mongoDB)
|
|
|
|
|
.catch(err=>
|
|
|
|
|
{
|
|
|
|
|
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
|
|
|
|
|
connectToDB();
|
|
|
|
|
});
|
|
|
|
|
try {
|
|
|
|
|
mongoose.connect(mongoDB);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
|
|
|
|
|
connectToDB();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bot.on('ready', () =>
|
|
|
|
|