mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 07:10:44 -05:00
Fix save()
This commit is contained in:
parent
40705af401
commit
856c943d66
@ -71,8 +71,8 @@ export class SaveServer {
|
||||
*/
|
||||
public async save(): Promise<void> {
|
||||
const timer = new Timer();
|
||||
for (const sessionID in this.profiles) {
|
||||
await this.saveProfile(sessionID);
|
||||
for (const [sessionId] of this.profiles) {
|
||||
await this.saveProfile(sessionId);
|
||||
}
|
||||
const profileCount = this.profiles.size;
|
||||
this.logger.debug(
|
||||
|
Loading…
x
Reference in New Issue
Block a user