Configure before setting cost

This commit is contained in:
2024-04-17 14:24:05 -04:00
parent b9627e1643
commit 01113fc3a6
+3 -4
View File
@@ -113,8 +113,10 @@ public enum ForgeManager implements Runnable {
workOrder.completionTime = System.currentTimeMillis() + workOrder.rollingDuration;
workOrder.slots_used = calcAvailableSlots(workOrder);
// Cost to execute this workOrder
// Configure this production run.
workOrder.total_produced = 0;
workOrder.total_to_produce *= workOrder.slots_used;
workOrder.production_cost = calcProductionCost(workOrder);
// Set total cost for this production run
@@ -122,9 +124,6 @@ public enum ForgeManager implements Runnable {
workOrder.production_cost_total.putAll(workOrder.production_cost);
workOrder.production_cost_total.forEach((key, value) -> workOrder.production_cost_total.compute(key, (k, v) -> v * workOrder.total_to_produce));
workOrder.total_produced = 0;
workOrder.total_to_produce *= workOrder.slots_used;
// Create in-memory items and add to collections
forgeWorkerOrderBatch(workOrder);