From a3d8eda63e4e53b9af26d2347c93501f2c4e56e8 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 13 Aug 2023 19:06:39 +0100 Subject: [PATCH] bug on limits for maps --- Process/Reader/Intake/JsonFileIntakeReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Process/Reader/Intake/JsonFileIntakeReader.cs b/Process/Reader/Intake/JsonFileIntakeReader.cs index de3ed67..01005f8 100644 --- a/Process/Reader/Intake/JsonFileIntakeReader.cs +++ b/Process/Reader/Intake/JsonFileIntakeReader.cs @@ -14,7 +14,7 @@ public class JsonFileIntakeReader : IIntakeReader private static readonly HashSet? _ignoredLocations = LootDumpProcessorContext.GetConfig().ReaderConfig.IntakeReaderConfig?.IgnoredDumpLocations.ToHashSet(); - private readonly ConcurrentDictionary _totalMapDumpsCounter = new(); + private static readonly ConcurrentDictionary _totalMapDumpsCounter = new(); public bool Read(string file, out BasicInfo basicInfo) {