workerOrder cost updating

This commit is contained in:
2024-04-12 15:48:25 -04:00
parent 2200cb9bef
commit cc3d5fe076
+1 -1
View File
@@ -106,7 +106,7 @@ public enum ForgeManager implements Runnable {
// Set total cost for this production run
workOrder.production_cost_total.putAll(workOrder.production_cost);
workOrder.production_cost.forEach((key, value) -> workOrder.production_cost_total.compute(key, (k, v) -> v * workOrder.total_to_produce));
workOrder.production_cost_total.forEach((key, value) -> workOrder.production_cost_total.compute(key, (k, v) -> v * workOrder.total_to_produce));
// Single item rolls are total_to_produce of 0;