From ad5e5bf2900b27717a823f6634ca08e42afe8dde Mon Sep 17 00:00:00 2001 From: Skillet Date: Wed, 15 Feb 2023 10:13:05 -0500 Subject: [PATCH] Don't record PlayerName --- squadjsPlugins/db-log-addOn.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/squadjsPlugins/db-log-addOn.js b/squadjsPlugins/db-log-addOn.js index 3085ab2..03a0443 100644 --- a/squadjsPlugins/db-log-addOn.js +++ b/squadjsPlugins/db-log-addOn.js @@ -39,9 +39,6 @@ export default class DBLogPlayerTime extends DBLog { primaryKey: true, autoIncrement: true }, - playerName: { - type: DataTypes.STRING - }, joinTime: { type: DataTypes.DATE }, @@ -115,7 +112,6 @@ export default class DBLogPlayerTime extends DBLog { await this.models.PlayerTime.create({ server: this.options.overrideServerID || this.server.id, player: info.player.steamID, - playerName: info.player.name, joinTime: info.time, joinedSeeding: this.seeding });