Merge branch 'develop' of https://github.com/sp-tarkov/server-csharp into develop

This commit is contained in:
Chomp
2025-09-18 14:03:39 +01:00
6 changed files with 17 additions and 38 deletions
@@ -12,7 +12,7 @@ public record Globals
public required Config Configuration { get; init; }
[JsonPropertyName("LocationInfection")]
public required LocationInfection LocationInfection { get; init; }
public required Dictionary<string, int> LocationInfection { get; init; }
[JsonPropertyName("bot_presets")]
public required IEnumerable<BotPreset> BotPresets { get; init; }
@@ -85,39 +85,6 @@ public record RadioStation
public RadioStationType Station { get; set; }
}
public record LocationInfection
{
[JsonPropertyName("Interchange")]
public double Interchange { get; set; }
[JsonPropertyName("Lighthouse")]
public double Lighthouse { get; set; }
[JsonPropertyName("RezervBase")]
public double RezervBase { get; set; }
[JsonPropertyName("Sandbox")]
public double Sandbox { get; set; }
[JsonPropertyName("Shoreline")]
public double Shoreline { get; set; }
[JsonPropertyName("TarkovStreets")]
public double TarkovStreets { get; set; }
[JsonPropertyName("Woods")]
public double Woods { get; set; }
[JsonPropertyName("bigmap")]
public double BigMap { get; set; }
[JsonPropertyName("factory4")]
public double Factory4 { get; set; }
[JsonPropertyName("laboratory")]
public double Laboratory { get; set; }
}
public record ArtilleryShelling
{
[JsonPropertyName("ArtilleryMapsConfigs")]