forked from MagicBane/Server
Configure before setting cost
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user