cargo console radio messages on approving (#27038)

* 1

* void --> "Unknown"
This commit is contained in:
icekot8
2024-04-18 03:32:21 +03:00
committed by GitHub
parent 92089da192
commit fd109d61b8
9 changed files with 37 additions and 6 deletions

View File

@@ -154,7 +154,7 @@ public sealed partial class CargoSystem
// We won't be able to fit the whole order on, so make one
// which represents the space we do have left:
var reducedOrder = new CargoOrderData(order.OrderId,
order.ProductId, order.Price, spaceRemaining, order.Requester, order.Reason);
order.ProductId, order.ProductName, order.Price, spaceRemaining, order.Requester, order.Reason);
orders.Add(reducedOrder);
}
else