mirror of
https://github.com/AsgardEternal/SquadJSDocker.git
synced 2025-01-02 13:19:20 -06:00
Update db-log-addOn.js
This commit is contained in:
parent
37da4689d9
commit
319a9e47c8
@ -110,8 +110,8 @@ 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.attacker.steamID,
|
steamID: info.player.steamID,
|
||||||
lastName: info.attacker.name
|
lastName: info.player.name
|
||||||
});
|
});
|
||||||
await this.models.PlayerTime.create({
|
await this.models.PlayerTime.create({
|
||||||
server: this.options.overrideServerID || this.server.id,
|
server: this.options.overrideServerID || this.server.id,
|
||||||
@ -125,8 +125,8 @@ export default class DBLogPlayerTime extends DBLog {
|
|||||||
async onPlayerDisconnected(info) {
|
async onPlayerDisconnected(info) {
|
||||||
if(info.player){
|
if(info.player){
|
||||||
await this.models.SteamUser.upsert({
|
await this.models.SteamUser.upsert({
|
||||||
steamID: info.attacker.steamID,
|
steamID: info.player.steamID,
|
||||||
lastName: info.attacker.name
|
lastName: info.player.name
|
||||||
});
|
});
|
||||||
await this.models.PlayerTime.update(
|
await this.models.PlayerTime.update(
|
||||||
{ leaveTime: info.time },
|
{ leaveTime: info.time },
|
||||||
|
Loading…
Reference in New Issue
Block a user