From c66d15153604c6cc7d3bafe93bfa7de59b8a8709 Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 28 Dec 2023 13:04:15 +0000 Subject: [PATCH] Add new `Sandbox` map --- Config/forced_loose.yaml | 5 ++++- Config/map_directory_mapping.yaml | 5 ++++- Model/Output/StaticContainer/StaticContainerRoot.cs | 4 ++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Config/forced_loose.yaml b/Config/forced_loose.yaml index 1a1e936..5a20d59 100644 --- a/Config/forced_loose.yaml +++ b/Config/forced_loose.yaml @@ -110,4 +110,7 @@ Streets of Tarkov: - 64f09c02b63b74469b6c149f # Paramedic's GPhone X (Ambulances Again) - 64f07f7726cfa02c506f8ac0 # Journal item_quest_kpss2 (Glory To CPSU P2) - 64f69b4267e11a7c6206e010 # Chef's diary (Beyond the Red Meat - Part 1) -- 64f5b4f71a5f313cb144c06c # Secret component (Beyond the Red Meat - Part 2) \ No newline at end of file +- 64f5b4f71a5f313cb144c06c # Secret component (Beyond the Red Meat - Part 2) + +Sandbox: +- 6582bd252b50c61c565828e2 # Bottle of Le Jean wine \ No newline at end of file diff --git a/Config/map_directory_mapping.yaml b/Config/map_directory_mapping.yaml index ad7226f..72154b2 100644 --- a/Config/map_directory_mapping.yaml +++ b/Config/map_directory_mapping.yaml @@ -26,4 +26,7 @@ Woods: - woods Streets of Tarkov: name: - - tarkovstreets \ No newline at end of file + - tarkovstreets +Sandbox: + name: + - Sandbox \ No newline at end of file diff --git a/Model/Output/StaticContainer/StaticContainerRoot.cs b/Model/Output/StaticContainer/StaticContainerRoot.cs index 1703362..da4d2c1 100644 --- a/Model/Output/StaticContainer/StaticContainerRoot.cs +++ b/Model/Output/StaticContainer/StaticContainerRoot.cs @@ -40,5 +40,9 @@ namespace LootDumpProcessor.Model.Output.StaticContainer [JsonProperty("Lighthouse", NullValueHandling = NullValueHandling.Ignore)] [JsonPropertyName("Lighthouse")] public MapStaticLoot? Lighthouse { get; set; } + + [JsonProperty("Sandbox", NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("Sandbox")] + public MapStaticLoot? GroundZero { get; set; } } } \ No newline at end of file