We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b93470 commit 9d6a570Copy full SHA for 9d6a570
Libraries/SPTarkov.Server.Core/Extensions/ProfileExtensions.cs
@@ -332,8 +332,6 @@ public static bool ProfileMeetsTraderLoyaltyLevelToBuyOffer(this PmcData pmcData
332
/// <returns>Hashset of Trader ids</returns>
333
public static HashSet<MongoId> GetLockedTraderIds(this PmcData pmcData)
334
{
335
- return pmcData.TradersInfo?
336
- .Where(trader => trader.Value.Unlocked == false)
337
- .Select(t => t.Key).ToHashSet() ?? [];
+ return pmcData.TradersInfo?.Where(trader => trader.Value.Unlocked == false).Select(t => t.Key).ToHashSet() ?? [];
338
}
339
0 commit comments