From 4a3387bd505d2305b29ddd14e0b28c91c1d0ade2 Mon Sep 17 00:00:00 2001 From: Chomp Date: Mon, 8 Sep 2025 15:39:01 +0100 Subject: [PATCH] Store tpls in config as MongoIds --- Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs index ec707916..690111d9 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs @@ -106,7 +106,7 @@ public record BotConfig : BaseConfig /// Tpls for low profile gas blocks /// [JsonPropertyName("lowProfileGasBlockTpls")] - public required HashSet LowProfileGasBlockTpls { get; set; } + public required HashSet LowProfileGasBlockTpls { get; set; } /// /// What bottypes should be excluded from having loot generated on them (backpack/pocket/vest) does not disable food/drink/special/ @@ -344,7 +344,7 @@ public record RandomisationDetails /// Key = weapon tpl, value = min size of magazine allowed /// [JsonPropertyName("minimumMagazineSize")] - public Dictionary? MinimumMagazineSize { get; set; } + public Dictionary? MinimumMagazineSize { get; set; } } public record NighttimeChanges