Fixed fluid autocrafting without item inputs locking when there's not enough space for the fluids. Fixes #2016

This commit is contained in:
raoulvdberge
2018-10-01 22:37:19 +02:00
parent 7b8960de94
commit 48a96b7ff6
2 changed files with 2 additions and 1 deletions

View File

@@ -712,7 +712,7 @@ public class CraftingTask implements ICraftingTask {
p.setState(ProcessingState.MACHINE_DOES_NOT_ACCEPT);
break;
} else if (p.getState() == ProcessingState.READY) { // If the items were ok.
} else if (p.getState() == ProcessingState.READY || p.getItemsToPut().isEmpty()) { // If the items were ok (or if we didn't have items).
p.setState(ProcessingState.READY);
}
}