Doubles go brr

This commit is contained in:
CWX
2025-01-16 10:39:53 +00:00
parent 255034786a
commit 30962039d2
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -184,7 +184,7 @@ public class Info
[JsonPropertyName("isMigratedSkills")]
public bool? IsMigratedSkills { get; set; }
public int? PrestigeLevel { get; set; }
public double? PrestigeLevel { get; set; }
}
public class BotInfoSettings
@@ -18,5 +18,5 @@ public class ProfileCreateRequestData : IRequestData
public string? VoiceId { get; set; }
[JsonPropertyName("sptForcePrestigeLevel")]
public int? SptForcePrestigeLevel { get; set; }
public double? SptForcePrestigeLevel { get; set; }
}
+1 -1
View File
@@ -27,7 +27,7 @@ public class UserDialogDetails
public string? Side { get; set; }
[JsonPropertyName("Level")]
public int? Level { get; set; }
public double? Level { get; set; }
[JsonPropertyName("MemberCategory")]
public MemberCategory? MemberCategory { get; set; }
+1 -1
View File
@@ -28,7 +28,7 @@ public class BotGenerationDetails
/// Active players current level
/// </summary>
[JsonPropertyName("playerLevel")]
public int? PlayerLevel { get; set; }
public double? PlayerLevel { get; set; }
[JsonPropertyName("playerName")]
public string? PlayerName { get; set; }
@@ -53,5 +53,5 @@ public class GenerateEquipmentProperties
public List<string>? GenerateModsBlacklist { get; set; }
[JsonPropertyName("generatingPlayerLevel")]
public int? GeneratingPlayerLevel { get; set; }
public double? GeneratingPlayerLevel { get; set; }
}