Fix matter fab not using all output slots, closes #1101
This commit is contained in:
parent
dd7005dc0a
commit
968cb057e1
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ public class TileMatterFabricator extends TilePowerAcceptor
|
|||
}
|
||||
|
||||
private boolean spaceForOutput() {
|
||||
for (int i = 6; i < 10; i++) {
|
||||
for (int i = 6; i < 11; i++) {
|
||||
if(spaceForOutput(i)){
|
||||
return true;
|
||||
}
|
||||
|
@ -145,7 +145,7 @@ public class TileMatterFabricator extends TilePowerAcceptor
|
|||
}
|
||||
|
||||
private void addOutputProducts() {
|
||||
for (int i = 6; i < 10; i++) {
|
||||
for (int i = 6; i < 11; i++) {
|
||||
if(spaceForOutput(i)){
|
||||
addOutputProducts(i);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue