Merge branch 'master' of https://dev.sp-tarkov.com/SPT/Server into 310-dev

This commit is contained in:
Dev 2024-07-07 16:36:49 +01:00
commit aa90d8fa52

View File

@ -497,7 +497,16 @@ export class ProfileController
return false;
}
if (request.memberCategory !== null)
{
profileToUpdate.Info.SelectedMemberCategory = request.memberCategory;
}
if(request.squadInviteRestriction !== null)
{
profileToUpdate.Info.SquadInviteRestriction = request.squadInviteRestriction;
}
return true;
}
}