Update db-log-addOn.js

This commit is contained in:
Skillet 2023-02-16 19:11:23 -05:00 committed by GitHub
parent 426d476f0a
commit 25cb18afcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,11 +102,8 @@ export default class DBLogPlayerTime extends DBLog {
if((this.seeding == true) && (info.a2sPlayerCount >= 1)){
console.log('switching to Live');
this.seeding = false;
let curDateTime = new Date();
let timeNow = curDateTime.getFullYear() + '-' + (curDateTime.getMonth() + 1) + '-' + curDateTime.getDate()+' '+curDateTime.getHours()+':'+curDateTime.getMinutes()+':'+curDateTime.getSeconds();
console.log(timeNow);
await this.models.PlayerTime.update(
{ seedTime: timeNow },
{ seedTime: new Date() },
{ where: { seedTime: null, joinedSeeding: 1, leaveTime: null, server: this.options.overrideServerID || this.server.id } }
);
}else if(this.seeding == false && (info.a2sPlayerCount) < 1){