0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Fixed missing property in addMissingSptVersionTagToProfile()

This commit is contained in:
Dev 2024-06-03 22:30:20 +01:00
parent ed1840fc09
commit 0aff3c5274

View File

@ -401,7 +401,11 @@ export class ProfileFixerService
if (!fullProfile.spt)
{
this.logger.debug("Adding spt object to profile");
fullProfile.spt = { version: this.watermark.getVersionTag(), receivedGifts: [] };
fullProfile.spt = {
version: this.watermark.getVersionTag(),
receivedGifts: [],
freeRepeatableChangeCount: {},
};
}
}