diff --git a/DumpLib/DUMPDATA/botReqData.json b/DumpLib/DUMPDATA/botReqData.json index 0d4a990..8e10e08 100644 --- a/DumpLib/DUMPDATA/botReqData.json +++ b/DumpLib/DUMPDATA/botReqData.json @@ -39,5 +39,7 @@ {"Role":"infectedPmc","Limit":2,"Difficulty":"normal"}, {"Role":"infectedCivil","Limit":2,"Difficulty":"normal"}, {"Role":"infectedLaborant","Limit":2,"Difficulty":"normal"}, - {"Role":"infectedTagilla","Limit":2,"Difficulty":"normal"} + {"Role":"infectedTagilla","Limit":2,"Difficulty":"normal"}, + {"Role":"bossPartisan","Limit":2,"Difficulty":"normal"}, + {"Role":"followerSanitar","Limit":2,"Difficulty":"normal"} ] \ No newline at end of file diff --git a/DumpLib/DUMPDATA/config.json b/DumpLib/DUMPDATA/config.json index a6159f5..e099049 100644 --- a/DumpLib/DUMPDATA/config.json +++ b/DumpLib/DUMPDATA/config.json @@ -1,10 +1,10 @@ { "Name": "Dumper", - "MapNames": [ "Interchange", "factory4_day", "laboratory", "bigmap", "Lighthouse", "RezervBase", "Sandbox", "Sandbox_high", "Shoreline", "TarkovStreets", "Woods" ], + "MapNames": [ "Interchange", "factory4_day", "factory_night", "laboratory", "bigmap", "Lighthouse", "RezervBase", "Sandbox", "Sandbox_high", "Shoreline", "TarkovStreets", "Woods" ], "DateTimeFormat": "yyyy-MM-dd_HH-mm-ss", "QuickDumpEnabled": false, "SptTimings": { "SingleIterationDelayMs": 10000, - "AllIterationDelayMs": 300000 + "AllIterationDelayMs": 100000 } } \ No newline at end of file diff --git a/DumpLib/Helpers/TypeHelper.cs b/DumpLib/Helpers/TypeHelper.cs index e59478b..52ba515 100644 --- a/DumpLib/Helpers/TypeHelper.cs +++ b/DumpLib/Helpers/TypeHelper.cs @@ -269,12 +269,12 @@ public static class TypeHelper && constructors.Length == 2 && properties.Length == 0 && methods.Length == 4 - && fields.Any(f => f.Name == "KarmaValue") - && fields.Any(f => f.Name == "Encyclopedia") && fields.Any(f => f.Name == "Id") && fields.Any(f => f.Name == "AccountId") && fields.Any(f => f.Name == "PetId") - && fields.Any(f => f.Name == "Customization"); + && fields.Any(f => f.Name == "KarmaValue") + && fields.Any(f => f.Name == "Customization") + && fields.Any(f => f.Name == "Encyclopedia"); }); } catch (Exception e)