Fixed issue with autocrafting check outputs instead of inputs for insertion (#2734)
* fixed insertiong not working if output was for different type * changelog
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
### 1.9.9
|
||||
|
||||
- Fixed Refined Storage sidebuttons displaying over the JEI bookmark pagination buttons (raoulvdberge)
|
||||
- Fixed Issue where Crafters may fail to recognize an inventory/tank for some Patterns (Darkere)
|
||||
|
||||
### 1.9.8
|
||||
|
||||
|
@@ -106,8 +106,8 @@ public class ProcessingNode extends Node {
|
||||
allLocked = false;
|
||||
}
|
||||
|
||||
if ((!singleItemSetToReceive.isEmpty() && container.getConnectedInventory() == null) ||
|
||||
(!singleFluidSetToReceive.isEmpty() && container.getConnectedFluidInventory() == null)) {
|
||||
if ((!singleItemSetToRequire.isEmpty() && container.getConnectedInventory() == null) ||
|
||||
(!singleFluidSetToRequire.isEmpty() && container.getConnectedFluidInventory() == null)) {
|
||||
if (allMissingMachine) {
|
||||
this.state = ProcessingState.MACHINE_NONE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user