From 716e513ab6ca06ed317c817a3e2b01df787e2724 Mon Sep 17 00:00:00 2001 From: Xjph Date: Tue, 13 Feb 2024 08:57:22 -0330 Subject: [PATCH] uint to handle underflows from elite --- .../Files/Journal/StationServices/BuyDrones.cs | 4 ++-- .../Files/Journal/StationServices/ModuleBuy.cs | 4 ++-- .../Files/Journal/StationServices/ModuleSell.cs | 2 +- .../Files/Journal/StationServices/ModuleSellRemote.cs | 2 +- .../Files/Journal/StationServices/SellDrones.cs | 2 +- ObservatoryFramework/Files/Journal/Trade/MarketSell.cs | 4 ++-- ObservatoryFramework/Files/ParameterTypes/MarketItem.cs | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ObservatoryFramework/Files/Journal/StationServices/BuyDrones.cs b/ObservatoryFramework/Files/Journal/StationServices/BuyDrones.cs index 6f55c97..79adad6 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/BuyDrones.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/BuyDrones.cs @@ -4,8 +4,8 @@ { public string Type { get; init; } public int Count { get; init; } - public int BuyPrice { get; init; } - public int SellPrice { get; init; } + public uint BuyPrice { get; init; } + public uint SellPrice { get; init; } public int TotalCost { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/StationServices/ModuleBuy.cs b/ObservatoryFramework/Files/Journal/StationServices/ModuleBuy.cs index 5b3ed31..657d014 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/ModuleBuy.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/ModuleBuy.cs @@ -6,10 +6,10 @@ public string Slot { get; init; } public string BuyItem { get; init; } public string BuyItem_Localised { get; init; } - public int BuyPrice { get; init; } + public uint BuyPrice { get; init; } public string SellItem { get; init; } public string SellItem_Localised { get; init; } - public int SellPrice { get; init; } + public uint SellPrice { get; init; } public string StoredItem { get; init; } public string StoredItem_Localised { get; init; } public string Ship { get; init; } diff --git a/ObservatoryFramework/Files/Journal/StationServices/ModuleSell.cs b/ObservatoryFramework/Files/Journal/StationServices/ModuleSell.cs index b6cc527..e6a6bb7 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/ModuleSell.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/ModuleSell.cs @@ -6,7 +6,7 @@ public string Slot { get; init; } public string SellItem { get; init; } public string SellItem_Localised { get; init; } - public int SellPrice { get; init; } + public uint SellPrice { get; init; } public string Ship { get; init; } public ulong ShipID { get; init; } } diff --git a/ObservatoryFramework/Files/Journal/StationServices/ModuleSellRemote.cs b/ObservatoryFramework/Files/Journal/StationServices/ModuleSellRemote.cs index 34d43fd..90d9c12 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/ModuleSellRemote.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/ModuleSellRemote.cs @@ -6,7 +6,7 @@ public string SellItem { get; init; } public string SellItem_Localised { get; init; } public ulong ServerId { get; init; } - public int SellPrice { get; init; } + public uint SellPrice { get; init; } public string Ship { get; init; } public ulong ShipID { get; init; } } diff --git a/ObservatoryFramework/Files/Journal/StationServices/SellDrones.cs b/ObservatoryFramework/Files/Journal/StationServices/SellDrones.cs index f7d3c3e..49b496d 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/SellDrones.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/SellDrones.cs @@ -4,7 +4,7 @@ { public string Type { get; init; } public int Count { get; init; } - public int SellPrice { get; init; } + public uint SellPrice { get; init; } public int TotalSale { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs b/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs index 276be75..d1cb5b2 100644 --- a/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs +++ b/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs @@ -6,9 +6,9 @@ public string Type { get; init; } public string Type_Localised { get; init; } public int Count { get; init; } - public int SellPrice { get; init; } + public uint SellPrice { get; init; } public long TotalSale { get; init; } - public int AvgPricePaid { get; init; } + public uint AvgPricePaid { get; init; } public bool IllegalGoods { get; init; } public bool StolenGoods { get; init; } public bool BlackMarket { get; init; } diff --git a/ObservatoryFramework/Files/ParameterTypes/MarketItem.cs b/ObservatoryFramework/Files/ParameterTypes/MarketItem.cs index 211756a..28f1a84 100644 --- a/ObservatoryFramework/Files/ParameterTypes/MarketItem.cs +++ b/ObservatoryFramework/Files/ParameterTypes/MarketItem.cs @@ -7,8 +7,8 @@ public string Name_Localised { get; init; } public string Category { get; init; } public string Category_Localised { get; init; } - public int BuyPrice { get; init; } - public int SellPrice { get; init; } + public uint BuyPrice { get; init; } + public uint SellPrice { get; init; } public int StockBracket { get; init; } public int DemandBracket { get; init; } public int Stock { get; init; }