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
@@ -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; }
}