Update db-log-addOn.js

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

View File

@ -99,14 +99,14 @@ export default class DBLogPlayerTime extends DBLog {
await super.onUpdatedA2SInformation(info);
console.log(info);
if((this.seeding == true) && (info.a2sPlayerCount >= 1)){
if((this.seeding == true) && (info.a2sPlayerCount >= this.options.seedingThreshold)){
console.log('switching to Live');
this.seeding = false;
await this.models.PlayerTime.update(
{ 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){
}else if(this.seeding == false && (info.a2sPlayerCount-20) < this.options.seedingThreshold){
console.log('switching to seeding');
this.seeding = true;
}