Persist item work

This commit is contained in:
2024-04-15 11:07:26 -04:00
parent 9dbefcd830
commit 1be657d3ef
+3 -3
View File
@@ -59,11 +59,11 @@ public enum ForgeManager implements Runnable {
Logger.info("item forged:" + workOrder.workOrderID + " (" + workOrder.total_produced + "/" + workOrder.total_to_produce + ")");
// Complete this workOrder. Persist items currently in memory
// and set the items as completed.
if (workOrder.total_produced >= workOrder.total_to_produce) {
// Complete this workOrder. Persist items currently in memory
// and set the items as completed.
for (Item workOrderItem : workOrder.cooking) {
workOrderItem.setDateToUpgrade(0);