diff --git a/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs b/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs index 61902fad..85941807 100644 --- a/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs @@ -42,7 +42,7 @@ public class ProfileDataService(ISptLogger logger, FileUtil { ArgumentNullException.ThrowIfNull(profileData); - var data = jsonUtil.Serialize(profileData, profileData.GetType()); + var data = jsonUtil.Serialize(profileData, profileData.GetType(), true); if (data == null) { throw new Exception("The profile data when serialized resulted in a null value");