From 9baa1236d42a3cac91ef97245a9f5256cb69e86a Mon Sep 17 00:00:00 2001 From: Archangel Date: Thu, 9 Oct 2025 20:19:30 +0200 Subject: [PATCH] Make StaticLoot IEnumerable --- Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs index 34624af3..e5e3be0f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs @@ -79,10 +79,10 @@ public record ContainerData public record StaticLootDetails { [JsonPropertyName("itemcountDistribution")] - public ItemCountDistribution[] ItemCountDistribution { get; set; } + public IEnumerable ItemCountDistribution { get; set; } [JsonPropertyName("itemDistribution")] - public ItemDistribution[] ItemDistribution { get; set; } + public IEnumerable ItemDistribution { get; set; } } public record ItemCountDistribution