Fixed nullref

This commit is contained in:
Dev 2024-11-01 18:56:26 +00:00
parent 2415929c46
commit 9661b27794

View File

@ -94,20 +94,14 @@ public static class BotParser
bot.InsuredItems = null; bot.InsuredItems = null;
// Add bot if not already added // Add bot if not already added
if (parsedBotsDict.TryAdd(bot._id, bot)) if (!parsedBotsDict.TryAdd(bot._id, bot))
{
// Success
// Null out more data to save ram
bot.Inventory.items.RemoveAll(x => x.parentId == null);
}
else
{ {
dupeCount++; dupeCount++;
} }
} }
totalDupeCount += dupeCount; totalDupeCount += dupeCount;
Console.WriteLine($"Parsed file: {filePath}"); //Console.WriteLine($"Parsed file: {filePath}");
return totalDupeCount; return totalDupeCount;
} }