Update TileAutoWorkbench.java
This commit is contained in:
parent
ec3d44db6f
commit
f0120931be
1 changed files with 2 additions and 2 deletions
|
@ -247,14 +247,14 @@ public class TileAutoWorkbench extends TileEntity implements ISpecialInventory {
|
||||||
this.refilFromNeibour();
|
this.refilFromNeibour();
|
||||||
|
|
||||||
if (!this.canCraft()){
|
if (!this.canCraft()){
|
||||||
return new ItemStack[0];
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.craft();
|
this.craft();
|
||||||
item = result.copy();
|
item = result.copy();
|
||||||
}else{
|
}else{
|
||||||
return new ItemStack[0];
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ItemStack[] { item };
|
return new ItemStack[] { item };
|
||||||
|
|
Loading…
Reference in a new issue