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:
parent
ed1840fc09
commit
0aff3c5274
@ -401,7 +401,11 @@ export class ProfileFixerService
|
|||||||
if (!fullProfile.spt)
|
if (!fullProfile.spt)
|
||||||
{
|
{
|
||||||
this.logger.debug("Adding spt object to profile");
|
this.logger.debug("Adding spt object to profile");
|
||||||
fullProfile.spt = { version: this.watermark.getVersionTag(), receivedGifts: [] };
|
fullProfile.spt = {
|
||||||
|
version: this.watermark.getVersionTag(),
|
||||||
|
receivedGifts: [],
|
||||||
|
freeRepeatableChangeCount: {},
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user