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
|
### 1.9.9
|
||||||
|
|
||||||
- Fixed Refined Storage sidebuttons displaying over the JEI bookmark pagination buttons (raoulvdberge)
|
- 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
|
### 1.9.8
|
||||||
|
|
||||||
|
@@ -106,8 +106,8 @@ public class ProcessingNode extends Node {
|
|||||||
allLocked = false;
|
allLocked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!singleItemSetToReceive.isEmpty() && container.getConnectedInventory() == null) ||
|
if ((!singleItemSetToRequire.isEmpty() && container.getConnectedInventory() == null) ||
|
||||||
(!singleFluidSetToReceive.isEmpty() && container.getConnectedFluidInventory() == null)) {
|
(!singleFluidSetToRequire.isEmpty() && container.getConnectedFluidInventory() == null)) {
|
||||||
if (allMissingMachine) {
|
if (allMissingMachine) {
|
||||||
this.state = ProcessingState.MACHINE_NONE;
|
this.state = ProcessingState.MACHINE_NONE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user