feat: simplify station production

This commit is contained in:
2026-03-17 20:38:13 -04:00
parent 0ae53b76e8
commit b3508d9d08
4 changed files with 29 additions and 63 deletions

View File

@@ -565,7 +565,7 @@ public sealed partial class SimulationEngine
station.MarketOrderIds.OrderBy(orderId => orderId, StringComparer.Ordinal).ToList());
private static IReadOnlyList<StationActionProgressSnapshot> ToStationActionProgressSnapshots(SimulationWorld world, StationRuntime station) =>
GetStationProductionLanes(station)
GetStationProductionLanes(world, station)
.Select(laneKey =>
{
var recipe = SelectProductionRecipe(world, station, laneKey);