Add new Sandbox map

This commit is contained in:
Dev 2023-12-28 13:04:15 +00:00
parent ae7dd7f85d
commit c66d151536
3 changed files with 12 additions and 2 deletions

View File

@ -111,3 +111,6 @@ Streets of Tarkov:
- 64f07f7726cfa02c506f8ac0 # Journal item_quest_kpss2 (Glory To CPSU P2) - 64f07f7726cfa02c506f8ac0 # Journal item_quest_kpss2 (Glory To CPSU P2)
- 64f69b4267e11a7c6206e010 # Chef's diary (Beyond the Red Meat - Part 1) - 64f69b4267e11a7c6206e010 # Chef's diary (Beyond the Red Meat - Part 1)
- 64f5b4f71a5f313cb144c06c # Secret component (Beyond the Red Meat - Part 2) - 64f5b4f71a5f313cb144c06c # Secret component (Beyond the Red Meat - Part 2)
Sandbox:
- 6582bd252b50c61c565828e2 # Bottle of Le Jean wine

View File

@ -27,3 +27,6 @@ Woods:
Streets of Tarkov: Streets of Tarkov:
name: name:
- tarkovstreets - tarkovstreets
Sandbox:
name:
- Sandbox

View File

@ -40,5 +40,9 @@ namespace LootDumpProcessor.Model.Output.StaticContainer
[JsonProperty("Lighthouse", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("Lighthouse", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Lighthouse")] [JsonPropertyName("Lighthouse")]
public MapStaticLoot? Lighthouse { get; set; } public MapStaticLoot? Lighthouse { get; set; }
[JsonProperty("Sandbox", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Sandbox")]
public MapStaticLoot? GroundZero { get; set; }
} }
} }