diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs index 6ab154fd..6ee1735a 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs @@ -524,6 +524,10 @@ public class ProfileHelper( profileSkill.Progress += pointsToAddToSkill; profileSkill.Progress = Math.Min(profileSkill?.Progress ?? 0D, 5100); // Prevent skill from ever going above level 51 (5100) + + profileSkill.PointsEarnedDuringSession ??= 0; + profileSkill.PointsEarnedDuringSession += pointsToAddToSkill; + profileSkill.LastAccess = _timeUtil.GetTimeStamp(); }