mirror of
https://github.com/AsgardEternal/SquadJSDocker.git
synced 2024-12-30 15:19:18 -06:00
Update db-log-addOn.js
This commit is contained in:
parent
57efa1dd75
commit
d550afacdc
@ -97,12 +97,16 @@ export default class DBLogPlayerTime extends DBLog {
|
||||
await super.onUpdatedA2SInformation(info);
|
||||
|
||||
if((this.seeding === true) && (info.a2sPlayerCount >= this.options.seedingThreshold)){
|
||||
console.log('switching to Live');
|
||||
this.seeding = false;
|
||||
await this.models.PlayerTime.update(
|
||||
{ seedTime: info.time },
|
||||
{ where: { seedTime: null, joinedSeeding: 1, leaveTime: null, server: this.options.overrideServerID || this.server.id } }
|
||||
);
|
||||
}else if(this.seeding === false && (info.a2sPlayerCount-20) < this.options.seedingThreshold) this.seeding = true;
|
||||
}else if(this.seeding === false && (info.a2sPlayerCount-20) < this.options.seedingThreshold){
|
||||
console.log('switching to seeding');
|
||||
this.seeding = true;
|
||||
}
|
||||
}
|
||||
|
||||
async onPlayerConnected(info) {
|
||||
|
Loading…
Reference in New Issue
Block a user