From eb9b5ae555a43f14276038d13c3e68558b8357fc Mon Sep 17 00:00:00 2001 From: Lucas Date: Tue, 25 Jun 2024 15:19:52 +0200 Subject: [PATCH] Fix `FuelMain` not being a decimal number --- EliteAPI.Status/Ship/ShipFuel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EliteAPI.Status/Ship/ShipFuel.cs b/EliteAPI.Status/Ship/ShipFuel.cs index d3bab9e5..0629a26e 100644 --- a/EliteAPI.Status/Ship/ShipFuel.cs +++ b/EliteAPI.Status/Ship/ShipFuel.cs @@ -5,7 +5,7 @@ namespace EliteAPI.Status.Ship; public readonly struct ShipFuel { [JsonProperty("FuelMain")] - public long FuelMain { get; init; } + public double FuelMain { get; init; } [JsonProperty("FuelReservoir")] public double FuelReservoir { get; init; }