diff --git a/Core/Models/Eft/Common/Globals.cs b/Core/Models/Eft/Common/Globals.cs index 5f341e59..923fd3ab 100644 --- a/Core/Models/Eft/Common/Globals.cs +++ b/Core/Models/Eft/Common/Globals.cs @@ -1294,13 +1294,13 @@ public class Mastering public class Customization { [JsonPropertyName("SavageHead")] - public Dictionary>? Head { get; set; } + public Dictionary? Head { get; set; } [JsonPropertyName("SavageBody")] - public Dictionary>? Body { get; set; } + public Dictionary? Body { get; set; } [JsonPropertyName("SavageFeet")] - public Dictionary>? Feet { get; set; } + public Dictionary? Feet { get; set; } [JsonPropertyName("CustomizationVoice")] public List? VoiceOptions { get; set; } @@ -1312,36 +1312,36 @@ public class Customization public class WildHead { [JsonPropertyName("head")] - public string Head { get; set; } + public string? Head { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } [JsonPropertyName("NotRandom")] - public string NotRandom { get; set; } + public bool? NotRandom { get; set; } } public class WildBody { [JsonPropertyName("body")] - public string Body { get; set; } + public string? Body { get; set; } [JsonPropertyName("hands")] - public string Hands { get; set; } + public string? Hands { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } } public class WildFeet { - [JsonPropertyName("head")] - public string Head { get; set; } + [JsonPropertyName("feet")] + public string? Feet { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } [JsonPropertyName("NotRandom")] - public string NotRandom { get; set; } + public bool? NotRandom { get; set; } } public class CustomizationVoice