Sanity check for deleted vendors

This commit is contained in:
2024-06-12 14:06:18 -04:00
parent 1d673ca2e5
commit 3accd779b9
+1 -1
View File
@@ -67,7 +67,7 @@ public enum ForgeManager implements Runnable {
// Early exit for completed workOrders loaded from disk // Early exit for completed workOrders loaded from disk
// or vendors who were re-deeded with items still cooking. // or vendors who were re-deeded with items still cooking.
if (workOrder.vendor == null && workOrder.runCompleted.get()) if (workOrder.vendor == null || workOrder.runCompleted.get())
continue; continue;
// This workOrder has completed production. // This workOrder has completed production.