deal with null players

This commit is contained in:
Skillet 2023-02-15 02:13:30 -05:00 committed by GitHub
parent 14d25e2a22
commit 177382a153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ export default class DBLogPlayerTime extends DBLog {
} }
async onPlayerConnected(info) { async onPlayerConnected(info) {
if(info.player) if(info.player){
await this.models.SteamUser.upsert({ await this.models.SteamUser.upsert({
steamID: info.player.steamID, steamID: info.player.steamID,
lastName: info.player.name lastName: info.player.name
@ -124,12 +124,15 @@ export default class DBLogPlayerTime extends DBLog {
joinTime: info.time, joinTime: info.time,
joinedSeeding: this.seeding joinedSeeding: this.seeding
}); });
}
} }
async onPlayerDisconnected(info) { async onPlayerDisconnected(info) {
await this.models.PlayerTime.update( if(info.player){
await this.models.PlayerTime.update(
{ leaveTime: info.time }, { leaveTime: info.time },
{ where: { player: info.player.steamID, leaveTime: null, server: this.options.overrideServerID || this.server.id } } { where: { player: info.player.steamID, leaveTime: null, server: this.options.overrideServerID || this.server.id } }
); );
}
} }
} }