From 2604db86e60117584344b7bca309985bb7777d84 Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 17 Oct 2025 09:05:09 +0100 Subject: [PATCH] Fixed nullref error in `FixProfileBreakingInventoryItemIssues` due to BSG typo --- Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs b/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs index 49a309c5..2fc9bcbb 100644 --- a/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs @@ -198,7 +198,7 @@ public class ProfileFixerService( if (customizationDb.ContainsKey(pmcProfile.Customization.Feet.Value)) { var defaultFeet = playerIsUsec - ? customizationDbArray.FirstOrDefault(x => x.Name == "DefaultUsecFeet") + ? customizationDbArray.FirstOrDefault(x => x.Name == "DefaulUsecFeet") : customizationDbArray.FirstOrDefault(x => x.Name == "DefaultBearFeet"); pmcProfile.Customization.Feet = defaultFeet.Id; }