Skip to content

Commit

Permalink
Fix FuelMain not being a decimal number
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic committed Jun 25, 2024
1 parent 85d5fea commit eb9b5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EliteAPI.Status/Ship/ShipFuel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit eb9b5ae

Please sign in to comment.