Type changes, fix changes to botLootGen

This commit is contained in:
CWX
2025-01-16 16:38:38 +00:00
parent 2746867d18
commit c8787c8310
2 changed files with 85 additions and 37 deletions
@@ -5,8 +5,8 @@ namespace Core.Models.Spt.Bots;
public class ItemSpawnLimitSettings
{
[JsonPropertyName("currentLimits")]
public Dictionary<string, int>? CurrentLimits { get; set; }
public Dictionary<string, double>? CurrentLimits { get; set; }
[JsonPropertyName("globalLimits")]
public Dictionary<string, int>? GlobalLimits { get; set; }
}
public Dictionary<string, double>? GlobalLimits { get; set; }
}