From 7ef796306a07efef5a65b06eb381b07a47befdd4 Mon Sep 17 00:00:00 2001 From: Chomp Date: Sat, 1 Feb 2025 18:52:25 +0000 Subject: [PATCH] Comment changes --- Libraries/Core/Generators/LocationLootGenerator.cs | 2 +- Libraries/Core/Models/Eft/Ragfair/SearchRequestData.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Libraries/Core/Generators/LocationLootGenerator.cs b/Libraries/Core/Generators/LocationLootGenerator.cs index cd6d3539..5c3bbbcf 100644 --- a/Libraries/Core/Generators/LocationLootGenerator.cs +++ b/Libraries/Core/Generators/LocationLootGenerator.cs @@ -693,7 +693,7 @@ public class LocationLootGenerator( foreach (var spawnpoint in allDynamicSpawnpoints) { - // Point is blacklsited, skip + // Point is blacklisted, skip if (blacklistedSpawnpoints?.Contains(spawnpoint.Template.Id) ?? false) { if(_logger.IsLogEnabled(LogLevel.Debug)) diff --git a/Libraries/Core/Models/Eft/Ragfair/SearchRequestData.cs b/Libraries/Core/Models/Eft/Ragfair/SearchRequestData.cs index 05698e9f..2b8782a3 100644 --- a/Libraries/Core/Models/Eft/Ragfair/SearchRequestData.cs +++ b/Libraries/Core/Models/Eft/Ragfair/SearchRequestData.cs @@ -48,6 +48,9 @@ public record SearchRequestData : IRequestData [JsonPropertyName("offerOwnerType")] public OfferOwnerType? OfferOwnerType { get; set; } + /// + /// 'Only Operational' + /// [JsonPropertyName("onlyFunctional")] public bool? OnlyFunctional { get; set; }