From 9ad3f77bb823dfc2c6432c366b627acc55dd1902 Mon Sep 17 00:00:00 2001 From: xjph Date: Thu, 11 Nov 2021 18:47:56 -0330 Subject: [PATCH] change to accept overflows --- .../Files/ParameterTypes/CarrierSpaceUsage.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ObservatoryFramework/Files/ParameterTypes/CarrierSpaceUsage.cs b/ObservatoryFramework/Files/ParameterTypes/CarrierSpaceUsage.cs index 24e7cb9..306c54a 100644 --- a/ObservatoryFramework/Files/ParameterTypes/CarrierSpaceUsage.cs +++ b/ObservatoryFramework/Files/ParameterTypes/CarrierSpaceUsage.cs @@ -2,12 +2,12 @@ { public class CarrierSpaceUsage { - public int TotalCapacity { get; init; } - public int Crew { get; init; } - public int Cargo { get; init; } - public int CargoSpaceReserved { get; init; } - public int ShipPacks { get; init; } - public int ModulePacks { get; init; } - public int FreeSpace { get; init; } + public long TotalCapacity { get; init; } + public long Crew { get; init; } + public long Cargo { get; init; } + public long CargoSpaceReserved { get; init; } + public long ShipPacks { get; init; } + public long ModulePacks { get; init; } + public long FreeSpace { get; init; } } }