From c1189307d78443129b93cf328c301334a5da96c9 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 1 Apr 2025 11:39:05 +0100 Subject: [PATCH] Fixed profile creation error due to missing default value --- Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs index 9c3ba8d4..4e5d5fb8 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs @@ -204,7 +204,8 @@ public class ProfileHelper( FreeRepeatableRefreshUsedCount = new Dictionary(), Migrations = new Dictionary(), CultistRewards = new Dictionary(), - PendingPrestige = null + PendingPrestige = null, + ExtraRepeatableQuests = new Dictionary() }; }