Fixed nullref error in FixProfileBreakingInventoryItemIssues due to BSG typo

This commit is contained in:
Chomp
2025-10-17 09:05:09 +01:00
parent cb043f3d7f
commit 2604db86e6
@@ -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;
}